Fix localization test failing due to order of locale definitions (#12393)

master
Eugen Rochko 5 years ago committed by GitHub
parent 24ea938ce1
commit 510e184216
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      config/application.rb
  2. 1
      spec/requests/localization_spec.rb

@ -53,8 +53,8 @@ module Mastodon
:el,
:en,
:eo,
:es,
:'es-AR',
:es,
:et,
:eu,
:fa,
@ -93,8 +93,8 @@ module Mastodon
:sk,
:sl,
:sq,
:sr,
:'sr-Latn',
:sr,
:sv,
:ta,
:te,

@ -26,6 +26,7 @@ describe 'Localization' do
I18n.t('about.tagline', locale: 'es')
)
end
it 'falls back to english when locale is missing' do
headers = { 'Accept-Language' => '12-FAKE' }

Loading…
Cancel
Save