TST: Test both functions(!).

This commit is contained in:
arokem
2015-12-23 15:36:35 -08:00
committed by Ariel Rokem
parent 436d0e8ca3
commit 9fb5f1333d
+1 -1
View File
@@ -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)