From fcd4c662bfb21a320406c8ea0a5af365113a0597 Mon Sep 17 00:00:00 2001 From: wiredfool Date: Fri, 20 Jun 2014 00:40:18 -0700 Subject: [PATCH] Fixed JPEG qtables test --- Tests/test_file_jpeg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/test_file_jpeg.py b/Tests/test_file_jpeg.py index 74ee8a1c3..d584eef1c 100644 --- a/Tests/test_file_jpeg.py +++ b/Tests/test_file_jpeg.py @@ -224,7 +224,7 @@ class TestFileJpeg(PillowTestCase): filename = "Tests/images/junk_jpeg_header.jpg" Image.open(filename) - def test_qtables(): + def test_qtables(self): im = Image.open("Tests/images/lena.jpg") qtables = im.quantization reloaded = self.roundtrip(im, qtables=qtables, subsampling=0)