Fix incorrect test function signature

This commit is contained in:
Juan Nunez-Iglesias
2014-07-28 13:01:41 +10:00
parent 278a0d6862
commit 838617cb39
+1 -1
View File
@@ -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)