From 2a006446afd089eaa2f8807124ea5f7d25df4820 Mon Sep 17 00:00:00 2001 From: Marcelo-MConti Date: Sun, 14 Dec 2025 11:34:09 -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 0b0bd1295..12db93a22 100644 --- a/Tests/test_imageops.py +++ b/Tests/test_imageops.py @@ -606,7 +606,7 @@ def test_autocontrast_preserve_one_color(color: tuple[int, int, int]) -> None: assert_image_equal(img, out) -def test_dither_primary_returns_image(): +def test_dither_primary_returns_image() -> None: im = Image.new("RGB", (4, 4), (128, 128, 128)) out = ImageOps.dither_primary(im)