From 67b1335c15c8c5012648eaadb1c277807139ba52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Boulogne?= Date: Sat, 15 Mar 2014 08:50:53 -0400 Subject: [PATCH] remove '' around ValueError --- skimage/draw/tests/test_draw3d.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/skimage/draw/tests/test_draw3d.py b/skimage/draw/tests/test_draw3d.py index 35925497..1d29e41e 100644 --- a/skimage/draw/tests/test_draw3d.py +++ b/skimage/draw/tests/test_draw3d.py @@ -5,17 +5,17 @@ from nose.tools import raises from skimage.draw import ellipsoid, ellipsoid_stats -@raises('ValueError') +@raises(ValueError) def test_ellipsoid_sign_paramters1(): ellipsoid(-1, 2, 2) -@raises('ValueError') +@raises(ValueError) def test_ellipsoid_sign_paramters2(): ellipsoid(0, 2, 2) -@raises('ValueError') +@raises(ValueError) def test_ellipsoid_sign_paramters3(): ellipsoid(-3, -2, 2)