diff --git a/skimage/morphology/tests/test_convex_hull.py b/skimage/morphology/tests/test_convex_hull.py index a33f3fb2..1a41b6c8 100644 --- a/skimage/morphology/tests/test_convex_hull.py +++ b/skimage/morphology/tests/test_convex_hull.py @@ -33,7 +33,7 @@ def test_basic(): # Test that an error is raised on passing a 3D image: image3d = np.empty((5, 5, 5)) - assert_raises(ValueError, convex_hull_object, image3d) + assert_raises(ValueError, convex_hull_image, image3d) @skipif(not scipy_spatial)