diff options
Diffstat (limited to 'bootstraptest')
-rw-r--r-- | bootstraptest/test_thread.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bootstraptest/test_thread.rb b/bootstraptest/test_thread.rb index 40ccbad497..3c1cc5a1c1 100644 --- a/bootstraptest/test_thread.rb +++ b/bootstraptest/test_thread.rb @@ -169,9 +169,9 @@ assert_equal %q{11}, %q{ Thread.current[:a] }.value + Thread.current[:a] } -assert_equal %q{1000}, %q{ +assert_equal %q{100}, %q{ begin - 1000.times do |i| + 100.times do |i| begin Thread.start(Thread.current) {|u| u.raise } raise @@ -180,6 +180,6 @@ begin end end rescue - 1000 + 100 end }, '[ruby-dev:31371]' |