From 13e3120925d809b91e2ce503e8a4823bd4e7c15e Mon Sep 17 00:00:00 2001 From: Yay295 Date: Fri, 26 Aug 2022 16:05:02 -0500 Subject: [PATCH] comment out I;16 modes for the linear and radial gradient tests --- Tests/test_image.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Tests/test_image.py b/Tests/test_image.py index cd828bfce..d8ade19d4 100644 --- a/Tests/test_image.py +++ b/Tests/test_image.py @@ -554,9 +554,9 @@ class TestImage: ("La", (0, 255), (255, 255)), ("F", 0, 255), ("I", 0, 255), - ("I;16", 0, 255), - ("I;16L", 0, 255), - ("I;16B", 0, 255), + # ("I;16", 0, 255), + # ("I;16L", 0, 255), + # ("I;16B", 0, 255), ("RGB", (0, 0, 0), (255, 255, 255)), ("RGBX", (0, 0, 0, 255), (255, 255, 255, 255)), ("RGBA", (0, 0, 0, 255), (255, 255, 255, 255)), @@ -609,9 +609,9 @@ class TestImage: ("La", (255, 255), (0, 255)), ("F", 255, 0), ("I", 255, 0), - ("I;16", 255, 0), - ("I;16L", 255, 0), - ("I;16B", 255, 0), + # ("I;16", 255, 0), + # ("I;16L", 255, 0), + # ("I;16B", 255, 0), ("RGB", (255, 255, 255), (0, 0, 0)), ("RGBX", (255, 255, 255, 255), (0, 0, 0, 255)), ("RGBA", (255, 255, 255, 255), (0, 0, 0, 255)),