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 {
1010type Currency {
1111 base_currency_code : String @doc (description : " The base currency set for the store, such as USD." )
1212 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." )
1414 default_display_currency_code : String @doc (description : " The currency that is displayed by default, such as USD." )
1515 default_display_currecy_symbol : String @deprecated (reason : " The field name is misspelled. Use `default_display_currency_symbol` instead." )
1616 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) {
226226 }
227227 $ this ->assertNotEmpty ($ fieldDeprecatedReason );
228228 $ this ->assertContains (
229- 'Symbol was missed . Use `default_display_currency_code`. ' ,
229+ 'The field name is misspelled . Use `default_display_currency_code` instead . ' ,
230230 $ fieldDeprecatedReason
231231 );
232232
233233 $ this ->assertContains (
234- 'Symbol was missed . Use `default_display_currency_code`. ' ,
234+ 'The field name is misspelled . Use `default_display_currency_code` instead . ' ,
235235 $ fieldsValueReasonArray
236236 );
237237
You can’t perform that action at this time.
0 commit comments