From 727d7d716e5563083800a5934583167759503ce1 Mon Sep 17 00:00:00 2001 From: Tsung-Po Sun Date: Sun, 31 Jan 2021 15:21:38 +0900 Subject: [PATCH] Reformat --- Tests/test_imagedraw.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/Tests/test_imagedraw.py b/Tests/test_imagedraw.py index f8000054e..e236ba6d1 100644 --- a/Tests/test_imagedraw.py +++ b/Tests/test_imagedraw.py @@ -1332,7 +1332,19 @@ def test_continuous_horizontal_edges_polygon(): os.path.join(IMAGES_PATH, "continuous_horizontal_edges_polygon.png") ) as expected: expected.load() - xy = [(2, 6), (12, 6), (12, 12), (8, 12), (8, 9), (8, 8), (5, 8), (4, 8), (3, 8), (2, 8), (2, 7)] + xy = [ + (2, 6), + (12, 6), + (12, 12), + (8, 12), + (8, 9), + (8, 8), + (5, 8), + (4, 8), + (3, 8), + (2, 8), + (2, 7) + ] img, draw = create_base_image_draw((16, 16)) draw.polygon(xy, BLACK) assert_image_equal(img, expected, "continuous horizontal edges polygon failed")