Fixed warning

This commit is contained in:
Andrew Murray 2025-06-13 21:03:08 +10:00
parent a3d91cb0ce
commit a219e96fd3

View File

@ -294,9 +294,10 @@ def test_header_token_too_long(tmp_path: Path, data: bytes) -> None:
with open(path, "wb") as f: with open(path, "wb") as f:
f.write(data) f.write(data)
with pytest.raises(ValueError, match="Token too long in file header: "): with pytest.raises(ValueError) as e:
with Image.open(path): with Image.open(path):
pass pass
assert "Token too long in file header: " in repr(e)
def test_truncated_file(tmp_path: Path) -> None: def test_truncated_file(tmp_path: Path) -> None: