Skip to content

Commit

Permalink
Fix failing pil test
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed May 9, 2015
1 parent 5f067ff commit b479eab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skimage/io/tests/test_pil.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down

0 comments on commit b479eab

Please sign in to comment.