Skip to content

Commit

Permalink
Show failed environment variables
Browse files Browse the repository at this point in the history
  • Loading branch information
nobu committed Sep 27, 2021
1 parent 0a38212 commit dfa67db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/ruby/test_m17n.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1331,8 +1331,8 @@ def test_env
env_encoding = Encoding.find("locale")
end
ENV.each {|k, v|
assert_equal(env_encoding, k.encoding, k)
assert_equal(env_encoding, v.encoding, v)
assert_equal(env_encoding, k.encoding, proc {"key(#{k.encoding})=#{k.dump}"})
assert_equal(env_encoding, v.encoding, proc {"key(#{k.encoding})=#{k.dump}\n" "value(#{v.encoding})=#{v.dump}"})
}
end

Expand Down

0 comments on commit dfa67db

Please sign in to comment.