BUG: Remove print statement that caused py3 tests to fail.

This commit is contained in:
Stefan van der Walt
2012-08-24 03:30:11 -07:00
parent 8cdd0e909a
commit eccc419071
+1 -1
View File
@@ -47,7 +47,7 @@ def test_subdivide_polygon():
new_square3 = subdivide_polygon(square3, degree, True)
np.testing.assert_equal(new_square3[0], square3[0])
np.testing.assert_equal(new_square3[-1], square3[-1])
print mask_len
np.testing.assert_equal(new_square3.shape[0],
2 * (square3.shape[0] - mask_len + 2))