mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
Fixed unclosed file warning
This commit is contained in:
parent
f91f93e246
commit
2844fd2d18
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue
Block a user