diff options
Diffstat (limited to 'actionview/test/template/translation_helper_test.rb')
-rw-r--r-- | actionview/test/template/translation_helper_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionview/test/template/translation_helper_test.rb b/actionview/test/template/translation_helper_test.rb index f166668a60..a9d5ea7345 100644 --- a/actionview/test/template/translation_helper_test.rb +++ b/actionview/test/template/translation_helper_test.rb @@ -152,9 +152,9 @@ class TranslationHelperTest < ActiveSupport::TestCase assert_equal 'A Generic String', translation end - def test_translate_doesnt_change_options + def test_translate_does_not_change_options options = {} translate(:'translations.missing', options) - assert_equal options, {} + assert_equal({}, options) end end |