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],