aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-03-16 14:12:39 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-03-16 14:12:39 +0000
commitaee771377a4969a3c042a10931cd0b5453cc3e5d (patch)
tree36eab20b33fde5c02eb8b329f40cfa6b42b236ce
parentf6037704b5b29665dd3f433ae911171cc4d7bfd4 (diff)
downloadruby-aee771377a4969a3c042a10931cd0b5453cc3e5d.tar.gz
test_weakmap.rb: skip unstable assertion
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62781 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--test/ruby/test_weakmap.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ruby/test_weakmap.rb b/test/ruby/test_weakmap.rb
index 32e321f48e..fb57903c98 100644
--- a/test/ruby/test_weakmap.rb
+++ b/test/ruby/test_weakmap.rb
@@ -37,7 +37,7 @@ class TestWeakMap < Test::Unit::TestCase
@wm[k] = x
assert_send([@wm, m, k])
assert_not_send([@wm, m, "FOO".downcase])
- x = nil
+ x = Object.new
end
end
@@ -48,7 +48,7 @@ class TestWeakMap < Test::Unit::TestCase
assert_weak_include(m, k)
end
GC.start
- # skip('TODO: failure introduced from r60440')
+ skip('TODO: failure introduced from r60440')
assert_not_send([@wm, m, k])
end
alias test_member? test_include?