]> source.dussan.org Git - redmine.git/commitdiff
Fix that I18nTest#test_custom_pluralization_rules randomly fails (#36396, #36461).
authorGo MAEDA <maeda@farend.jp>
Sat, 22 Jan 2022 09:16:19 +0000 (09:16 +0000)
committerGo MAEDA <maeda@farend.jp>
Sat, 22 Jan 2022 09:16:19 +0000 (09:16 +0000)
Patch by Yuichi HARADA.

git-svn-id: http://svn.redmine.org/redmine/trunk@21382 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/unit/lib/redmine/i18n_test.rb

index 4e15ae56b7c3ceedbb0ca3aa75529739f069d503..f6e7a804d1b77b2ed5f5eca39b9f57a4d6a9510b 100644 (file)
@@ -257,11 +257,13 @@ class Redmine::I18nTest < ActiveSupport::TestCase
   end
 
   def test_custom_pluralization_rules
+    pluralizers = I18n.backend.instance_variable_get(:@pluralizers)
+    I18n.backend.instance_variable_set(:@pluralizers, nil)
     I18n.backend.store_translations :pt, i18n: {plural: {rule: ->(n) {[0, 1].include?(n) ? :one : :other }}}
     I18n.backend.store_translations :pt, apples: {one: 'one or none', other: 'more than one'}
     assert_equal 'one or none', ll(:pt, :apples, count: 0)
     assert_equal 'more than one', ll(:pt, :apples, count: 2)
   ensure
-    I18n.reload!
+    I18n.backend.instance_variable_set(:@pluralizers, pluralizers)
   end
 end