From 97d610becd9f1c9e4e6a17aeffc381f937193f7f Mon Sep 17 00:00:00 2001 From: usa Date: Wed, 4 Apr 2018 15:44:56 +0000 Subject: [PATCH] * test/test_tempfile.rb (test_{new,create}_traversal_dir): should not assume `t` is always set. if `t` is nil, `NoMethodError` will be raised and the real cause will be hidden. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63096 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/test_tempfile.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_tempfile.rb b/test/test_tempfile.rb index 6a8933c392..988dcf3a23 100644 --- a/test/test_tempfile.rb +++ b/test/test_tempfile.rb @@ -391,7 +391,7 @@ puts Tempfile.new('foo').path actual = Dir.glob(TRAVERSAL_PATH + '*').count assert_equal expect, actual ensure - t.close! + t&.close! end def test_create_traversal_dir @@ -400,6 +400,6 @@ puts Tempfile.new('foo').path actual = Dir.glob(TRAVERSAL_PATH + '*').count assert_equal expect, actual ensure - t.close + t&.close end end