diff --git a/Tests/test_imagedraw.py b/Tests/test_imagedraw.py index a5f11e786..f070be77d 100644 --- a/Tests/test_imagedraw.py +++ b/Tests/test_imagedraw.py @@ -812,13 +812,14 @@ class TestImageDraw(PillowTestCase): im = hopper() draw = ImageDraw.Draw(im) + x0, y0, x1, y1 = 20, 20, 30.0, 30.0 xys = [ - [X0, Y0, X1, Y1], - [[X0, Y0], [X1, Y1]], - [(X0, Y0), (X1, Y1)], - (X0, Y0, X1, Y1), - ([X0, Y0], [X1, Y1]), - ((X0, Y0), (X1, Y1)), + [x0, y0, x1, y1], + [[x0, y0], [x1, y1]], + [(x0, y0), (x1, y1)], + (x0, y0, x1, y1), + ([x0, y0], [x1, y1]), + ((x0, y0), (x1, y1)), ] for xy in xys: