From ac5c0c30a985432e34cbb9d69c43221bb88209c3 Mon Sep 17 00:00:00 2001 From: Juan Nunez-Iglesias Date: Mon, 12 Jan 2015 16:01:01 +1100 Subject: [PATCH] Fix incorrect call to mark_boundaries in test --- skimage/segmentation/tests/test_boundaries.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/segmentation/tests/test_boundaries.py b/skimage/segmentation/tests/test_boundaries.py index 0992fa74..e6e401ac 100644 --- a/skimage/segmentation/tests/test_boundaries.py +++ b/skimage/segmentation/tests/test_boundaries.py @@ -69,7 +69,7 @@ def test_mark_boundaries_subpixel(): [0, 0, 0, 0]], dtype=np.uint8) np.random.seed(0) image = np.round(np.random.rand(*labels.shape), 2) - marked = np.mark_boundaries(image, labels, color=white, mode='subpixel') + marked = mark_boundaries(image, labels, color=white, mode='subpixel') marked_proj = np.round(np.mean(marked, axis=-1), 2) ref_result = np.array(