File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
app/code/Magento/DirectoryGraphQl/etc
dev/tests/api-functional/testsuite/Magento/GraphQl Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ type Query {
10
10
type Currency {
11
11
base_currency_code : String @doc (description : " The base currency set for the store, such as USD." )
12
12
base_currency_symbol : String @doc (description : " The symbol for the specified base currency, such as $." )
13
- default_display_currecy_code : String @deprecated (reason : " The field name is misspelled . Use `default_display_currency_code` instead ." )
13
+ default_display_currecy_code : String @deprecated (reason : " Symbol was missed . Use `default_display_currency_code`." )
14
14
default_display_currency_code : String @doc (description : " The currency that is displayed by default, such as USD." )
15
- default_display_currecy_symbol : String @deprecated (reason : " The field name is misspelled . Use `default_display_currency_symbol` instead ." )
15
+ default_display_currecy_symbol : String @deprecated (reason : " Symbol was missed . Use `default_display_currency_code` ." )
16
16
default_display_currency_symbol : String @doc (description : " The currency symbol that is displayed by default, such as $." )
17
17
available_currency_codes : [String ] @doc (description : " An array of three-letter currency codes accepted by the store, such as USD and EUR." )
18
18
exchange_rates : [ExchangeRate ] @doc (description : " An array of exchange rates for currencies defined in the store." )
Original file line number Diff line number Diff line change @@ -226,12 +226,12 @@ enumValues(includeDeprecated: true) {
226
226
}
227
227
$ this ->assertNotEmpty ($ fieldDeprecatedReason );
228
228
$ this ->assertContains (
229
- 'The field name is misspelled . Use `default_display_currency_code` instead . ' ,
229
+ 'Symbol was missed . Use `default_display_currency_code`. ' ,
230
230
$ fieldDeprecatedReason
231
231
);
232
232
233
233
$ this ->assertContains (
234
- 'The field name is misspelled . Use `default_display_currency_code` instead . ' ,
234
+ 'Symbol was missed . Use `default_display_currency_code`. ' ,
235
235
$ fieldsValueReasonArray
236
236
);
237
237
You can’t perform that action at this time.
0 commit comments