From eccc41907135cf81b99c4be18a480a9bc705485d Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Fri, 24 Aug 2012 03:30:11 -0700 Subject: [PATCH] BUG: Remove print statement that caused py3 tests to fail. --- skimage/measure/tests/test_polygon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/measure/tests/test_polygon.py b/skimage/measure/tests/test_polygon.py index f239c735..1907d7cb 100644 --- a/skimage/measure/tests/test_polygon.py +++ b/skimage/measure/tests/test_polygon.py @@ -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))