Update Tests/test_imageops.py

Co-authored-by: Andrew Murray <3112309+radarhere@users.noreply.github.com>
This commit is contained in:
Marcelo-MConti 2025-12-14 11:34:32 -03:00 committed by GitHub
parent aee5905539
commit a2354b4cef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -628,7 +628,7 @@ def test_dither_primary_uses_only_primary_colors() -> None:
assert b in (0, 255)
def test_dither_primary_small_image():
def test_dither_primary_small_image() -> None:
im = Image.new("RGB", (2, 2), (255, 0, 0))
out = ImageOps.dither_primary(im)