From 2de0c729470d26cfcbf26f1076f3de4db525495e Mon Sep 17 00:00:00 2001 From: mame Date: Wed, 4 Apr 2018 15:26:11 +0000 Subject: [PATCH] test/test_tempfile.rb: close a file object created by Tempfile.create To stop a "Leaked file descriptor" warning. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63094 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/test_tempfile.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/test_tempfile.rb b/test/test_tempfile.rb index ef035e358b..6a8933c392 100644 --- a/test/test_tempfile.rb +++ b/test/test_tempfile.rb @@ -396,8 +396,10 @@ puts Tempfile.new('foo').path def test_create_traversal_dir expect = Dir.glob(TRAVERSAL_PATH + '*').count - Tempfile.create(TRAVERSAL_PATH + 'foo') + t = Tempfile.create(TRAVERSAL_PATH + 'foo') actual = Dir.glob(TRAVERSAL_PATH + '*').count assert_equal expect, actual + ensure + t.close end end