From aee5905539b683cda5b4d2b83b1f6a5b1458524f Mon Sep 17 00:00:00 2001 From: Marcelo-MConti Date: Sun, 14 Dec 2025 11:34:22 -0300 Subject: [PATCH] Update Tests/test_imageops.py Co-authored-by: Andrew Murray <3112309+radarhere@users.noreply.github.com> --- Tests/test_imageops.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/test_imageops.py b/Tests/test_imageops.py index 12db93a22..48aa0d53e 100644 --- a/Tests/test_imageops.py +++ b/Tests/test_imageops.py @@ -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)