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']