Fix failing pil test

This commit is contained in:
Steven Silvester
2015-05-09 16:56:10 -05:00
parent 5f067ff43b
commit b479eabd7e
+1 -1
View File
@@ -65,7 +65,7 @@ def test_imread_separate_channels():
def test_imread_multipage_rgb_tif():
img = imread(os.path.join(data_dir, 'multipage_rgb.tif'))
assert img.shape == (10, 10, 3), img.shape
assert img.shape == (2, 10, 10, 3), img.shape
def test_imread_palette():