From 838617cb394c9ab9c948ebd64439d0485edfbf0d Mon Sep 17 00:00:00 2001 From: Juan Nunez-Iglesias Date: Mon, 28 Jul 2014 13:01:41 +1000 Subject: [PATCH] Fix incorrect test function signature --- skimage/filter/tests/test_thresholding.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/filter/tests/test_thresholding.py b/skimage/filter/tests/test_thresholding.py index 47555a83..8464cb21 100644 --- a/skimage/filter/tests/test_thresholding.py +++ b/skimage/filter/tests/test_thresholding.py @@ -67,7 +67,7 @@ class TestSimpleImage(): def test_isodata_linspace(self): assert -63.8 < threshold_isodata(np.linspace(-127, 0, 256)) < -63.6 - def test_isodata_16bit(): + def test_isodata_16bit(self): np.random.seed(0) imfloat = np.random.rand(256, 256) t = threshold_isodata(imfloat, nbins=1024)