Skip to content

Commit

Permalink
Debugging appveyor warning
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Jan 31, 2016
1 parent b4793ca commit da038c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions skimage/io/tests/test_mpl_imshow.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def test_low_dynamic_range():

def test_outside_standard_range():
plt.figure()
with expected_warnings(["out of standard range|CObject type is marked"]):
with expected_warnings(["out of standard range"]):
ax_im = io.imshow(im_hi)
assert ax_im.get_clim() == (im_hi.min(), im_hi.max())
assert n_subplots(ax_im) == 2
Expand All @@ -88,7 +88,7 @@ def test_outside_standard_range():
def test_nonstandard_type():
plt.figure()

with expected_warnings(["Low image dynamic range|CObject type is marked"]):
with expected_warnings(["Low image dynamic range"]):
ax_im = io.imshow(im64)
assert ax_im.get_clim() == (im64.min(), im64.max())
assert n_subplots(ax_im) == 2
Expand Down

0 comments on commit da038c4

Please sign in to comment.