diff options
author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-09-03 10:19:24 +0000 |
---|---|---|
committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-09-03 10:19:24 +0000 |
commit | 27c48232b367cfe26e7efca970ee07c4bdb198d2 (patch) | |
tree | 8051297a2b02ae9b4bd69a67a9ae370d49427b27 /test/ruby | |
parent | 293d6dd82873f77fd899d62079f0facdce140749 (diff) | |
download | ruby-27c48232b367cfe26e7efca970ee07c4bdb198d2.tar.gz ruby-27c48232b367cfe26e7efca970ee07c4bdb198d2.tar.xz ruby-27c48232b367cfe26e7efca970ee07c4bdb198d2.zip |
* test/ruby/test_thread.rb: fix test.
[ruby-dev:35960]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19082 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
-rw-r--r-- | test/ruby/test_thread.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_thread.rb b/test/ruby/test_thread.rb index cd99cdc40..4332b0fe2 100644 --- a/test/ruby/test_thread.rb +++ b/test/ruby/test_thread.rb @@ -126,7 +126,7 @@ class TestThread < Test::Unit::TestCase sleep 0.5 t1.kill t2.kill - assert(c1 > c2 * 1.5, "[ruby-dev:33124]") + assert(c1 > c2, "[ruby-dev:33124]") end def test_new |