From f9fd683fcbd8a5eeee1e4424fcc0b9840452fb6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Fri, 8 Aug 2014 19:51:10 -0400 Subject: [PATCH] Test missed line for coverage --- skimage/filter/tests/test_thresholding.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/skimage/filter/tests/test_thresholding.py b/skimage/filter/tests/test_thresholding.py index 5b103e6d..69b56cde 100644 --- a/skimage/filter/tests/test_thresholding.py +++ b/skimage/filter/tests/test_thresholding.py @@ -103,6 +103,9 @@ class TestSimpleImage(): out = threshold_adaptive(self.image, 3, method='gaussian') assert_equal(ref, out) + out = threshold_adaptive(self.image, 3, method='gaussian', param=1.0 / 3.0) + assert_equal(ref, out) + def test_threshold_adaptive_mean(self): ref = np.array( [[False, False, False, False, True],