From eef3734bfe326e2a3c0601b0bd104e7a5133f1cb Mon Sep 17 00:00:00 2001 From: Jonathan Helmus Date: Wed, 21 Jan 2015 16:03:18 -0600 Subject: [PATCH] Remove end of line whitespace in test_unwrap.py --- skimage/restoration/tests/test_unwrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/restoration/tests/test_unwrap.py b/skimage/restoration/tests/test_unwrap.py index 7d22d5b2..979cd80c 100644 --- a/skimage/restoration/tests/test_unwrap.py +++ b/skimage/restoration/tests/test_unwrap.py @@ -138,7 +138,7 @@ def test_mask(): image_wrapped_3d = image_wrapped.reshape(shape) image_unwrapped_3d = unwrap_phase(image_wrapped_3d) # remove phase shift - image_unwrapped_3d -= image_unwrapped_3d[0, 0, 0] + image_unwrapped_3d -= image_unwrapped_3d[0, 0, 0] assert_array_almost_equal_nulp(image_unwrapped_3d[:, :, -1], image[i, -1])