diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/ruby/test_array.rb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/ruby/test_array.rb b/test/ruby/test_array.rb index 489b401574..2723b37c6a 100644 --- a/test/ruby/test_array.rb +++ b/test/ruby/test_array.rb @@ -1572,9 +1572,7 @@ class TestArray < Test::Unit::TestCase def test_hash2 a = [] a << a - b = [] - b << b - assert_equal(a.hash, b.hash) + assert_raise(ArgumentError) { a.hash } end def test_flatten2 |