Merge pull request #153 from cgohlke/patch-2

Fix invalid Python 3 syntax
This commit is contained in:
tonysyu
2012-02-25 20:27:23 -08:00
2 changed files with 0 additions and 2 deletions
-1
View File
@@ -26,7 +26,6 @@ def test_squared_dot():
im[4:8, 4:8] = 1
im = img_as_float(im)
results = harris(im, min_distance=3)
print results
assert (results == np.array([[6, 6]])).all()
def test_rotated_lena():
-1
View File
@@ -37,7 +37,6 @@ def test_imread_uint16_big_endian():
class TestSave:
def roundtrip(self, dtype, x, suffix):
print dtype, x.shape, suffix
f = NamedTemporaryFile(suffix='.'+suffix)
fname = f.name
f.close()