diff --git a/Tests/images/hopper.dcx b/Tests/images/hopper.dcx new file mode 100644 index 000000000..ba6bd062e Binary files /dev/null and b/Tests/images/hopper.dcx differ diff --git a/Tests/images/lena.dcx b/Tests/images/lena.dcx deleted file mode 100644 index d05370be8..000000000 Binary files a/Tests/images/lena.dcx and /dev/null differ diff --git a/Tests/test_file_dcx.py b/Tests/test_file_dcx.py index 9a6183651..2acf7b459 100644 --- a/Tests/test_file_dcx.py +++ b/Tests/test_file_dcx.py @@ -1,9 +1,9 @@ -from helper import unittest, PillowTestCase, lena +from helper import unittest, PillowTestCase, hopper from PIL import Image, DcxImagePlugin -# Created with ImageMagick: convert lena.ppm lena.dcx -TEST_FILE = "Tests/images/lena.dcx" +# Created with ImageMagick: convert hopper.ppm hopper.dcx +TEST_FILE = "Tests/images/hopper.dcx" class TestFileDcx(PillowTestCase): @@ -17,7 +17,7 @@ class TestFileDcx(PillowTestCase): # Assert self.assertEqual(im.size, (128, 128)) self.assertIsInstance(im, DcxImagePlugin.DcxImageFile) - orig = lena() + orig = hopper() self.assert_image_equal(im, orig) def test_tell(self):