summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/ruby/test_m17n.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ruby/test_m17n.rb b/test/ruby/test_m17n.rb
index d8f45078bf..2857c088a2 100644
--- a/test/ruby/test_m17n.rb
+++ b/test/ruby/test_m17n.rb
@@ -1257,8 +1257,8 @@ class TestM17N < Test::Unit::TestCase
def test_env
locale_encoding = Encoding.find("locale")
ENV.each {|k, v|
- assert_equal(locale_encoding, k.encoding)
- assert_equal(locale_encoding, v.encoding)
+ assert_equal(locale_encoding, k.encoding, k)
+ assert_equal(locale_encoding, v.encoding, v)
}
end