From a90e72076a60670b10db9ce7b87f243a4fa132cc Mon Sep 17 00:00:00 2001 From: Anton Vlasenko Date: Thu, 23 Jul 2015 11:29:26 +0200 Subject: [PATCH] Fixing typo to have proper testing --- Tests/test_file_gif.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/test_file_gif.py b/Tests/test_file_gif.py index c40e5f6b0..70438eb03 100644 --- a/Tests/test_file_gif.py +++ b/Tests/test_file_gif.py @@ -93,7 +93,7 @@ class TestFileGif(PillowTestCase): im.save(out, save_all=True) reread = Image.open(out) - self.assertEqual(im.n_frames, 5) + self.assertEqual(reread.n_frames, 5) def test_palette_handling(self): # see https://github.com/python-pillow/Pillow/issues/513