From 5f0d846b9bfa895978438f437797a22d5570ea9f Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Sun, 16 Feb 2020 21:16:20 +1100 Subject: [PATCH] Updated test --- Tests/test_image_thumbnail.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/test_image_thumbnail.py b/Tests/test_image_thumbnail.py index 7b40a67b6d4..2792acea30a 100644 --- a/Tests/test_image_thumbnail.py +++ b/Tests/test_image_thumbnail.py @@ -55,7 +55,7 @@ def test_aspect(): assert im.size == (34, 50) # ratio is 0.68 -def test_float(self): +def test_float(): im = Image.new("L", (128, 128)) im.thumbnail((99.9, 99.9)) assert im.size == (99, 99)