ENH: In test, do not compute hull twice.

This commit is contained in:
Stefan van der Walt
2011-10-28 14:36:05 -07:00
parent b34b9d8ddd
commit 2191d29611
+1 -1
View File
@@ -53,7 +53,7 @@ def test_possible_hull():
[4, 6]])
ph = possible_hull(image)
assert_array_equal(possible_hull(image), expected)
assert_array_equal(ph, expected)
if __name__ == "__main__":
np.testing.run_module_suite()