diff --git a/Tests/test_file_libtiff.py b/Tests/test_file_libtiff.py index 983f35b4a88..b56ca4c7d54 100644 --- a/Tests/test_file_libtiff.py +++ b/Tests/test_file_libtiff.py @@ -1281,12 +1281,6 @@ def test_save_zero(self, compression: str | None, tmp_path: Path) -> None: with pytest.raises(ValueError, match="cannot write empty image"): im.save(out, compression=compression) - def test_save_many_compressed(self, tmp_path: Path) -> None: - im = hopper() - out = tmp_path / "temp.tif" - for _ in range(10000): - im.save(out, compression="jpeg") - @pytest.mark.parametrize( "path, sizes", (