From 7f71390d1a0fc51222c5ac202c483c5847873697 Mon Sep 17 00:00:00 2001 From: Théo de la Hogue Date: Wed, 7 Dec 2022 16:23:23 +0100 Subject: Renaming function. --- src/argaze.test/AreaOfInterest/AOIFeatures.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/argaze.test') diff --git a/src/argaze.test/AreaOfInterest/AOIFeatures.py b/src/argaze.test/AreaOfInterest/AOIFeatures.py index c1158f6..c5e4ff4 100644 --- a/src/argaze.test/AreaOfInterest/AOIFeatures.py +++ b/src/argaze.test/AreaOfInterest/AOIFeatures.py @@ -76,8 +76,8 @@ class TestAreaOfInterestClass(unittest.TestCase): aoi_2D_float = AOIFeatures.AreaOfInterest([[0, 0], [0, math.pi], [math.pi, 0], [math.pi, math.pi]]) self.assertEqual(str(aoi_2D_float), f'[[0.0, 0.0], [0.0, {str(math.pi)}], [{str(math.pi)}, 0.0], [{str(math.pi)}, {str(math.pi)}]]') - - def text_clockwise(self): + + def test_clockwise(self): """Test AreaOfInterest clockwise method.""" aoi_2D_clockwise = AOIFeatures.AreaOfInterest([[0, 0], [0, 1], [1, 0], [1, 1]]).clockwise() -- cgit v1.1