From c6e916d082d4606f4b9dd38bd328709e59fabfd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Boulogne?= Date: Sat, 15 Mar 2014 08:26:45 -0400 Subject: [PATCH] remove extra ) --- skimage/draw/tests/test_draw3d.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skimage/draw/tests/test_draw3d.py b/skimage/draw/tests/test_draw3d.py index a455e947..35925497 100644 --- a/skimage/draw/tests/test_draw3d.py +++ b/skimage/draw/tests/test_draw3d.py @@ -107,12 +107,12 @@ def test_ellipsoid_stats(): # Test when a <= b <= c does not hold vol, surf = ellipsoid_stats(16, 6, 10) - assert_allclose(1280 * np.pi, vol, atol=1e-4)) + assert_allclose(1280 * np.pi, vol, atol=1e-4) assert_allclose(1383.28, surf, atol=1e-2) # Larger test to ensure reliability over broad range vol, surf = ellipsoid_stats(17, 27, 169) - assert_allclose(103428 * np.pi, vol, atol=1e-4)) + assert_allclose(103428 * np.pi, vol, atol=1e-4) assert_allclose(37426.3, surf, atol=1e-1)