use single string for parameter names instead of tuple of strings

Co-authored-by: Andrew Murray <3112309+radarhere@users.noreply.github.com>
This commit is contained in:
Yay295 2024-02-26 07:47:13 -06:00 committed by GitHub
parent ece34104cb
commit fe85947f16
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -686,7 +686,7 @@ class TestImage:
_make_new(im, blank_pa, ImagePalette.ImagePalette()) _make_new(im, blank_pa, ImagePalette.ImagePalette())
@pytest.mark.parametrize( @pytest.mark.parametrize(
("mode", "color"), "mode, color",
( (
("RGB", "#DDEEFF"), ("RGB", "#DDEEFF"),
("RGB", (221, 238, 255)), ("RGB", (221, 238, 255)),