From 1635e7a5714243cfe762b1dfaf3709bdf8a25118 Mon Sep 17 00:00:00 2001 From: Yay295 Date: Sat, 6 Apr 2024 15:18:16 -0500 Subject: [PATCH] Update Tests/test_image_getdata.py Co-authored-by: Andrew Murray <3112309+radarhere@users.noreply.github.com> --- Tests/test_image_getdata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/test_image_getdata.py b/Tests/test_image_getdata.py index 9181b24095b..dd3d70b3450 100644 --- a/Tests/test_image_getdata.py +++ b/Tests/test_image_getdata.py @@ -14,7 +14,7 @@ def test_sanity() -> None: assert data[0] == (20, 20, 70) -def test_hopper() -> None: +def test_mode() -> None: def getdata(mode: str) -> tuple[float | tuple[int, ...], int, int]: im = hopper(mode).resize((32, 30), Image.Resampling.NEAREST) data = im.getdata()