summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_io.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb
index b16662cd42..b146e8e321 100644
--- a/test/ruby/test_io.rb
+++ b/test/ruby/test_io.rb
@@ -3371,7 +3371,7 @@ __END__
assert_separately([], "#{<<-"begin;"}\n#{<<-"end;"}")
bug13076 = '[ruby-core:78845] [Bug #13076]'
begin;
- 100.times do |i|
+ 10.times do |i|
a = []
t = []
10.times do
@@ -3486,7 +3486,7 @@ __END__
end
def test_closed_stream_in_rescue
- 100.times do
+ 10.times do
assert_nothing_raised(RuntimeError, /frozen IOError/) do
IO.pipe do |r, w|
th = Thread.start {r.close}