summaryrefslogtreecommitdiff
path: root/test/ruby/test_hash.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_hash.rb')
-rw-r--r--test/ruby/test_hash.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/ruby/test_hash.rb b/test/ruby/test_hash.rb
index 2f030eac0e..c860b25239 100644
--- a/test/ruby/test_hash.rb
+++ b/test/ruby/test_hash.rb
@@ -767,12 +767,6 @@ class TestHash < Test::Unit::TestCase
assert(h1 != h2)
h1 = {1=>2}; h2 = {1=>4}
assert(h1 != h2)
-
- h1 = {}; h1[h1] = h1; h1.rehash
- h2 = {}; h2[h2] = h2; h2.rehash
- # assert(h1 != h2)
- # recursive hashes are handled properly now. [ruby-core:23402]
- assert(h1 == h2)
end
def test_eql