Skip to content

Commit

Permalink
Use monkeypatch
Browse files Browse the repository at this point in the history
  • Loading branch information
radarhere committed Dec 27, 2024
1 parent f9767fb commit 0148684
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Tests/test_image_thumbnail.py
Original file line number Diff line number Diff line change
@@ -104,20 +104,20 @@ def test_transposed() -> None:
assert im.size == (590, 88)


def test_load_first_unless_jpeg() -> None:
def test_load_first_unless_jpeg(monkeypatch: pytest.MonkeyPatch) -> None:
# Test that thumbnail() still uses draft() for JPEG
with Image.open("Tests/images/hopper.jpg") as im:
draft = im.draft
original_draft = im.draft

def im_draft(
mode: str, size: tuple[int, int]
) -> tuple[str, tuple[int, int, float, float]] | None:
result = draft(mode, size)
result = original_draft(mode, size)
assert result is not None

return result

im.draft = im_draft
monkeypatch.setattr(im, "draft", im_draft)

im.thumbnail((64, 64))

0 comments on commit 0148684

Please sign in to comment.