Fix a typo.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41184 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2013-06-08 15:57:05 +00:00
parent 633e4949bd
commit 58e67628ae

View File

@ -958,7 +958,7 @@ class TestHash < Test::Unit::TestCase
o = Object.new
def o.hash; 2 << 100; end
assert_equal({x=>1}.hash, {x=>1}.hash)
assert_equal({o=>1}.hash, {o=>1}.hash)
end
def test_hash_poped