Skip to content

Commit 4fa3e36

Browse files
committed
Changed test to hopper image
1 parent 41f9f6d commit 4fa3e36

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

Tests/images/gd

-1.21 KB
Binary file not shown.

Tests/images/hopper.gd

17 KB
Binary file not shown.

Tests/test_file_gd.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
from PIL import GdImageFile
44

5-
TEST_GD_FILE = "Tests/images/gd"
5+
TEST_GD_FILE = "Tests/images/hopper.gd"
66

77

88
class TestFileGd(PillowTestCase):
99

1010
def test_sanity(self):
1111
im = GdImageFile.open(TEST_GD_FILE)
12-
self.assertEqual(im.size, (10, 20))
12+
self.assertEqual(im.size, (128, 128))
1313
self.assertEqual(im.format, "GD")
1414

1515
def test_bad_mode(self):

0 commit comments

Comments
 (0)