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:22 -03:00 committed by GitHub
parent 2a006446af
commit aee5905539
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -615,7 +615,7 @@ def test_dither_primary_returns_image() -> None:
assert out.mode == "RGB"
def test_dither_primary_uses_only_primary_colors():
def test_dither_primary_uses_only_primary_colors() -> None:
im = Image.new("RGB", (4, 4), (200, 100, 50))
out = ImageOps.dither_primary(im)