From 58e67628ae19a9235bcc9bbba6d5a8e0858121f4 Mon Sep 17 00:00:00 2001 From: akr Date: Sat, 8 Jun 2013 15:57:05 +0000 Subject: [PATCH] Fix a typo. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41184 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_hash.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ruby/test_hash.rb b/test/ruby/test_hash.rb index 4aee4a05b6..dbc3ed2bfc 100644 --- a/test/ruby/test_hash.rb +++ b/test/ruby/test_hash.rb @@ -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