From 5522fa472da252bf39b5e30b6d267d8340653731 Mon Sep 17 00:00:00 2001 From: Terseus Date: Mon, 23 Jun 2014 20:07:09 +0200 Subject: [PATCH] Fixed variables misprint in ImageDraw tests --- Tests/test_imagedraw.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Tests/test_imagedraw.py b/Tests/test_imagedraw.py index a19ba78f8..ccd78e4e2 100644 --- a/Tests/test_imagedraw.py +++ b/Tests/test_imagedraw.py @@ -123,7 +123,7 @@ class TestImageDraw(PillowTestCase): draw = ImageDraw.Draw(im) # Act - draw.line(points1, fill="yellow", width=2) + draw.line(points, fill="yellow", width=2) del draw # Assert @@ -161,7 +161,7 @@ class TestImageDraw(PillowTestCase): draw = ImageDraw.Draw(im) # Act - draw.point(points1, fill="yellow") + draw.point(points, fill="yellow") del draw # Assert @@ -180,7 +180,7 @@ class TestImageDraw(PillowTestCase): draw = ImageDraw.Draw(im) # Act - draw.polygon(points1, fill="red", outline="blue") + draw.polygon(points, fill="red", outline="blue") del draw # Assert