Fixed unclosed file warning

This commit is contained in:
Andrew Murray 2021-03-12 22:45:07 +11:00
parent f91f93e246
commit 2844fd2d18

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()