summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_dir.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ruby/test_dir.rb b/test/ruby/test_dir.rb
index 85197ca864..51ea8e95e0 100644
--- a/test/ruby/test_dir.rb
+++ b/test/ruby/test_dir.rb
@@ -458,10 +458,10 @@ class TestDir < Test::Unit::TestCase
Process.setrlimit(Process::RLIMIT_NOFILE, 50)
begin
fs = []
- tap {tap {tap {(0..100).map {fs << open(IO::NULL)}}}}
+ tap {tap {tap {(0..100).each {fs << open(IO::NULL)}}}}
rescue Errno::EMFILE
ensure
- fs.each{|f| f.close}
+ fs.clear
end
list = Dir.glob("*").sort
assert_not_empty(list)