File tree 2 files changed +6
-6
lines changed
app/code/Magento/DirectoryGraphQl/etc
dev/tests/api-functional/testsuite/Magento/GraphQl/Directory 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ type Query {
10
10
type Currency {
11
11
base_currency_code : String
12
12
base_currency_symbol : String
13
- default_display_currecy_code : String
14
- default_display_currecy_symbol : String
13
+ default_display_currency_code : String
14
+ default_display_currency_symbol : String
15
15
available_currency_codes : [String ]
16
16
exchange_rates : [ExchangeRate ]
17
17
}
Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ public function testGetCurrency()
21
21
currency {
22
22
base_currency_code
23
23
base_currency_symbol
24
- default_display_currecy_code
25
- default_display_currecy_symbol
24
+ default_display_currency_code
25
+ default_display_currency_symbol
26
26
available_currency_codes
27
27
exchange_rates {
28
28
currency_to
@@ -36,8 +36,8 @@ public function testGetCurrency()
36
36
$ this ->assertArrayHasKey ('currency ' , $ result );
37
37
$ this ->assertArrayHasKey ('base_currency_code ' , $ result ['currency ' ]);
38
38
$ this ->assertArrayHasKey ('base_currency_symbol ' , $ result ['currency ' ]);
39
- $ this ->assertArrayHasKey ('default_display_currecy_code ' , $ result ['currency ' ]);
40
- $ this ->assertArrayHasKey ('default_display_currecy_symbol ' , $ result ['currency ' ]);
39
+ $ this ->assertArrayHasKey ('default_display_currency_code ' , $ result ['currency ' ]);
40
+ $ this ->assertArrayHasKey ('default_display_currency_symbol ' , $ result ['currency ' ]);
41
41
$ this ->assertArrayHasKey ('available_currency_codes ' , $ result ['currency ' ]);
42
42
$ this ->assertArrayHasKey ('exchange_rates ' , $ result ['currency ' ]);
43
43
}
You can’t perform that action at this time.
0 commit comments