From d471b354708fc8651015e4d222d33ae6f557ac0c Mon Sep 17 00:00:00 2001 From: rr- Date: Fri, 6 May 2016 23:29:53 +0200 Subject: [PATCH] Fix typo --- Tests/test_image_quantize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/test_image_quantize.py b/Tests/test_image_quantize.py index 225b02875..c19f4ccdf 100644 --- a/Tests/test_image_quantize.py +++ b/Tests/test_image_quantize.py @@ -22,7 +22,7 @@ class TestImageQuantize(PillowTestCase): im = im.quantize(100, Image.LIBIMAGEQUANT) except ValueError as ex: if 'dependency' in str(ex).lower(): - self.skipTest('libimagepng support not available') + self.skipTest('libimagequant support not available') else: raise self.assert_image(im, "P", im.size)