From a2354b4cef2e19e516e14beba4ec8560457f92cf Mon Sep 17 00:00:00 2001 From: Marcelo-MConti Date: Sun, 14 Dec 2025 11:34:32 -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 48aa0d53e..b1a7b6484 100644 --- a/Tests/test_imageops.py +++ b/Tests/test_imageops.py @@ -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)