diff --git a/Tests/test_image_resample.py b/Tests/test_image_resample.py index 25f4172ae2b..5ce98a23568 100644 --- a/Tests/test_image_resample.py +++ b/Tests/test_image_resample.py @@ -514,7 +514,9 @@ def test_subsample(self): assert_image_similar(reference, without_box, 5) @pytest.mark.parametrize("mode", ("RGB", "L", "RGBA", "LA", "I", "")) - @pytest.mark.parametrize("resample", (Image.Resampling.NEAREST, Image.Resampling.BILINEAR)) + @pytest.mark.parametrize( + "resample", (Image.Resampling.NEAREST, Image.Resampling.BILINEAR) + ) def test_formats(self, mode, resample): im = hopper(mode) box = (20, 20, im.size[0] - 20, im.size[1] - 20)