Merge pull request #5325 from radarhere/unclosed_file

Fixed unclosed file warning
This commit is contained in:
Hugo van Kemenade 2021-03-14 10:29:58 +02:00 committed by GitHub
commit 982837ec85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -143,8 +143,8 @@ def test_not_an_icns_file():
def test_icns_decompression_bomb():
with pytest.raises(Image.DecompressionBombError):
im = Image.open(
"Tests/images/oom-8ed3316a4109213ca96fb8a256a0bfefdece1461.icns"
)
im.load()
with Image.open(
"Tests/images/oom-8ed3316a4109213ca96fb8a256a0bfefdece1461.icns"
) as im:
with pytest.raises(Image.DecompressionBombError):
im.load()