Skip to content

Commit 16372dd

Browse files
authored
Merge pull request #8512 from radarhere/qtables
2 parents 2d1d801 + 80cf740 commit 16372dd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Tests/test_file_jpeg.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -541,12 +541,12 @@ def test_truncated_jpeg_throws_oserror(self) -> None:
541541
@mark_if_feature_version(
542542
pytest.mark.valgrind_known_error, "libjpeg_turbo", "2.0", reason="Known Failing"
543543
)
544-
def test_qtables(self, tmp_path: Path) -> None:
544+
def test_qtables(self) -> None:
545545
def _n_qtables_helper(n: int, test_file: str) -> None:
546+
b = BytesIO()
546547
with Image.open(test_file) as im:
547-
f = str(tmp_path / "temp.jpg")
548-
im.save(f, qtables=[[n] * 64] * n)
549-
with Image.open(f) as im:
548+
im.save(b, "JPEG", qtables=[[n] * 64] * n)
549+
with Image.open(b) as im:
550550
assert len(im.quantization) == n
551551
reloaded = self.roundtrip(im, qtables="keep")
552552
assert im.quantization == reloaded.quantization

0 commit comments

Comments
 (0)