From 8ec52869c7b7c632c353abe0bc08329e3ad4a907 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Scho=CC=88nberger?= Date: Sat, 12 May 2012 11:16:53 +0200 Subject: [PATCH] fix wrong indentation --- skimage/measure/tests/test_regionprops.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/skimage/measure/tests/test_regionprops.py b/skimage/measure/tests/test_regionprops.py index 313f9c70..ef70ce2d 100644 --- a/skimage/measure/tests/test_regionprops.py +++ b/skimage/measure/tests/test_regionprops.py @@ -160,9 +160,9 @@ def test_normalized_moments(): assert_almost_equal(nu[3,0], -0.017278118992041805) def test_orientation(): - orientation = regionprops(SAMPLE, ['Orientation'])[0]['Orientation'] - # determined with MATLAB - assert_almost_equal(orientation, 0.10446844651921) + orientation = regionprops(SAMPLE, ['Orientation'])[0]['Orientation'] + # determined with MATLAB + assert_almost_equal(orientation, 0.10446844651921) def test_solidity(): solidity = regionprops(SAMPLE, ['Solidity'])[0]['Solidity']