diff --git a/Tests/images/hopper.spider b/Tests/images/hopper.spider new file mode 100644 index 000000000..70e31b07c Binary files /dev/null and b/Tests/images/hopper.spider differ diff --git a/Tests/images/lena.spider b/Tests/images/lena.spider deleted file mode 100644 index df963c1c3..000000000 Binary files a/Tests/images/lena.spider and /dev/null differ diff --git a/Tests/test_file_spider.py b/Tests/test_file_spider.py index 65e4d2782..7bfedad1a 100644 --- a/Tests/test_file_spider.py +++ b/Tests/test_file_spider.py @@ -1,9 +1,9 @@ -from helper import unittest, PillowTestCase, lena +from helper import unittest, PillowTestCase, hopper from PIL import Image from PIL import SpiderImagePlugin -TEST_FILE = "Tests/images/lena.spider" +TEST_FILE = "Tests/images/hopper.spider" class TestImageSpider(PillowTestCase): @@ -18,7 +18,7 @@ class TestImageSpider(PillowTestCase): def test_save(self): # Arrange temp = self.tempfile('temp.spider') - im = lena() + im = hopper() # Act im.save(temp, "SPIDER") @@ -44,7 +44,7 @@ class TestImageSpider(PillowTestCase): def test_loadImageSeries(self): # Arrange - not_spider_file = "Tests/images/lena.ppm" + not_spider_file = "Tests/images/hopper.ppm" file_list = [TEST_FILE, not_spider_file, "path/not_found.ext"] # Act