From da038c4d88d23039516f9f1a9561862c4d6a4ac3 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Sun, 31 Jan 2016 07:48:47 -0600 Subject: [PATCH] Debugging appveyor warning --- skimage/io/tests/test_mpl_imshow.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skimage/io/tests/test_mpl_imshow.py b/skimage/io/tests/test_mpl_imshow.py index 26482f64be2..19a3c52e3f3 100644 --- a/skimage/io/tests/test_mpl_imshow.py +++ b/skimage/io/tests/test_mpl_imshow.py @@ -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 @@ -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