From b479eabd7e4119994c7d27ff6b54302c629c4211 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Sat, 9 May 2015 16:56:10 -0500 Subject: [PATCH] Fix failing pil test --- skimage/io/tests/test_pil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/io/tests/test_pil.py b/skimage/io/tests/test_pil.py index 1ac184a2..cd4e8939 100644 --- a/skimage/io/tests/test_pil.py +++ b/skimage/io/tests/test_pil.py @@ -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():