Test the native_locale_name of a non-standard locale (#20284)

`:en` is English for both `standard_locale_name` and
`native_locale_name`, and so makes for a poor test candidate for
differentiating between them.
This commit is contained in:
F 2022-11-10 23:06:18 +00:00 committed by GitHub
parent 302a58c22b
commit d4f973227c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ describe LanguagesHelper do
describe 'native_locale_name' do
it 'finds the human readable native name from a key' do
expect(helper.native_locale_name(:en)).to eq('English')
expect(helper.native_locale_name(:de)).to eq('Deutsch')
end
end