зеркало из https://github.com/github/ruby.git
Don't call f.close if f is nil or already closed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35229 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
d374004467
Коммит
58a9bf0c4c
|
@ -152,7 +152,7 @@ class TestOpenURI < Test::Unit::TestCase
|
|||
assert_equal("200", f.status[0])
|
||||
assert_equal("without_block", f.read)
|
||||
ensure
|
||||
f.close
|
||||
f.close if f && !f.closed?
|
||||
end
|
||||
}
|
||||
end
|
||||
|
|
Загрузка…
Ссылка в новой задаче