Test ignoring second ImageData

This commit is contained in:
Andrew Murray 2024-10-06 08:02:17 +11:00 committed by Yay295
parent d4fedc852c
commit 1b57b32caf
2 changed files with 5 additions and 1 deletions

Binary file not shown.

View File

@ -257,7 +257,11 @@ def test_bytesio_object() -> None:
@pytest.mark.parametrize(
# These images have an "ImageData" descriptor.
"filename",
("Tests/images/eps/1.eps", "Tests/images/eps/1_boundingbox_after_imagedata.eps"),
(
"Tests/images/eps/1.eps",
"Tests/images/eps/1_boundingbox_after_imagedata.eps",
"Tests/images/eps/1_second_imagedata.eps",
),
)
def test_1(filename: str) -> None:
with Image.open(filename) as im: