File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
app/code/Magento/DirectoryGraphQl/etc
dev/tests/api-functional/testsuite/Magento/GraphQl Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ 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 ield name is misspelled. Use `default_display_currency_code` instead." )
13
+ default_display_currecy_code : String @deprecated (reason : " The field name is misspelled. Use `default_display_currency_code` instead." )
14
14
default_display_currency_code : String @doc (description : " The currency that is displayed by default, such as USD." )
15
15
default_display_currecy_symbol : String @deprecated (reason : " The field name is misspelled. Use `default_display_currency_symbol` instead." )
16
16
default_display_currency_symbol : String @doc (description : " The currency symbol that is displayed by default, such as $." )
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
- 'Symbol was missed . Use `default_display_currency_code`. ' ,
229
+ 'The field name is misspelled . Use `default_display_currency_code` instead . ' ,
230
230
$ fieldDeprecatedReason
231
231
);
232
232
233
233
$ this ->assertContains (
234
- 'Symbol was missed . Use `default_display_currency_code`. ' ,
234
+ 'The field name is misspelled . Use `default_display_currency_code` instead . ' ,
235
235
$ fieldsValueReasonArray
236
236
);
237
237
You can’t perform that action at this time.
0 commit comments