aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-08 15:57:05 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-08 15:57:05 +0000
commit58e67628ae19a9235bcc9bbba6d5a8e0858121f4 (patch)
tree03d5194713ae13b1ce919999008cbfc748d18ede /test
parent633e4949bda73c7e6fdbc330dd48b46884e5f548 (diff)
downloadruby-58e67628ae19a9235bcc9bbba6d5a8e0858121f4.tar.gz
Fix a typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41184 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_hash.rb2
1 files changed, 1 insertions, 1 deletions
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