From 332e8fe51f0ba4107c6fef4957ddeb15a0681dec Mon Sep 17 00:00:00 2001 From: shugo Date: Sat, 6 Feb 2010 12:31:52 +0000 Subject: * lib/monitor.rb (wait): supported timeout. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26595 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/monitor/test_monitor.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/monitor/test_monitor.rb b/test/monitor/test_monitor.rb index 973b3c2744..8591570b70 100644 --- a/test/monitor/test_monitor.rb +++ b/test/monitor/test_monitor.rb @@ -122,7 +122,7 @@ class TestMonitor < Test::Unit::TestCase end end - def _test_timedwait + def test_timedwait cond = @monitor.new_cond b = "foo" queue2 = Queue.new @@ -153,7 +153,7 @@ class TestMonitor < Test::Unit::TestCase @monitor.synchronize do assert_equal("foo", c) result3 = cond.wait(0.1) - assert_equal(false, result3) + assert_equal(true, result3) # wait always returns true in Ruby 1.9 assert_equal("foo", c) queue3.enq(nil) result4 = cond.wait -- cgit v1.2.3