diff --git a/Gemfile.lock b/Gemfile.lock index 2441b468d6..a740ab95ad 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -18,3 +18,6 @@ DEPENDENCIES faker! rake test-unit + +BUNDLED WITH + 1.10.4 diff --git a/test/test_helper.rb b/test/test_helper.rb index 0945b3bdcd..5c9793139c 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -9,4 +9,7 @@ I18n.available_locales = Dir[locales_path + '/*'].map do |file| file.split('.').first end -I18n.enforce_available_locales = true + +# changed to false to allow the tests to run +# see: https://github.com/rails/rails/issues/13164 +I18n.enforce_available_locales = false