mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-07 14:24:54 +08:00
Merge pull request #153 from cgohlke/patch-2
Fix invalid Python 3 syntax
This commit is contained in:
@@ -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():
|
||||
|
||||
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user