diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-02-08 02:41:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-08 02:41:17 +0100 |
commit | b6d7726ecbc833abd00f6a9d36b24d9776cfe623 (patch) | |
tree | e5d7c94933e0ee8b0b3abae97a60c7636e121b20 /spec/helpers | |
parent | 85b86fe28c62b8c3b34de20a292b158526355ddd (diff) |
Remove language detection through cld3 (#17478)
* Remove language detection through cld3 * Update app/helpers/languages_helper.rb Co-authored-by: Yamagishi Kazutoshi <ykzts@desire.sh> Co-authored-by: Yamagishi Kazutoshi <ykzts@desire.sh>
Diffstat (limited to 'spec/helpers')
-rw-r--r-- | spec/helpers/languages_helper_spec.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/helpers/languages_helper_spec.rb b/spec/helpers/languages_helper_spec.rb index 6db617824..b455cee33 100644 --- a/spec/helpers/languages_helper_spec.rb +++ b/spec/helpers/languages_helper_spec.rb @@ -3,9 +3,9 @@ require 'rails_helper' describe LanguagesHelper do - describe 'the HUMAN_LOCALES constant' do - it 'includes all I18n locales' do - expect(described_class::HUMAN_LOCALES.keys).to include(*I18n.available_locales) + describe 'the SUPPORTED_LOCALES constant' do + it 'includes all i18n locales' do + expect(Set.new(described_class::SUPPORTED_LOCALES.keys + described_class::REGIONAL_LOCALE_NAMES.keys)).to include(*I18n.available_locales) end end |