diff --git a/Tests/images/lena.bw b/Tests/images/lena.bw deleted file mode 100644 index e2981ef5c..000000000 Binary files a/Tests/images/lena.bw and /dev/null differ diff --git a/Tests/images/lena.rgb b/Tests/images/lena.rgb deleted file mode 100644 index 82552c758..000000000 Binary files a/Tests/images/lena.rgb and /dev/null differ diff --git a/Tests/test_file_sgi.py b/Tests/test_file_sgi.py index 84b184b63..d49086c51 100644 --- a/Tests/test_file_sgi.py +++ b/Tests/test_file_sgi.py @@ -8,8 +8,8 @@ class TestFileSgi(PillowTestCase): def test_rgb(self): # Arrange # Created with ImageMagick then renamed: - # convert lena.ppm lena.sgi - test_file = "Tests/images/lena.rgb" + # convert hopper.ppm hopper.sgi + test_file = "Tests/images/hopper.rgb" # Act / Assert self.assertRaises(ValueError, lambda: Image.open(test_file)) @@ -17,8 +17,8 @@ class TestFileSgi(PillowTestCase): def test_l(self): # Arrange # Created with ImageMagick then renamed: - # convert lena.ppm -monochrome lena.sgi - test_file = "Tests/images/lena.bw" + # convert hopper.ppm -monochrome hopper.sgi + test_file = "Tests/images/hopper.bw" # Act / Assert self.assertRaises(ValueError, lambda: Image.open(test_file))