diff options
author | Théo de la Hogue | 2022-12-07 16:23:23 +0100 |
---|---|---|
committer | Théo de la Hogue | 2022-12-07 16:23:23 +0100 |
commit | 7f71390d1a0fc51222c5ac202c483c5847873697 (patch) | |
tree | ddac4114586bf1e36434e89e825842f6192a6547 /src/argaze.test/AreaOfInterest/AOIFeatures.py | |
parent | 5d61da8fba22140748aa03acdc3800913d161183 (diff) | |
download | argaze-7f71390d1a0fc51222c5ac202c483c5847873697.zip argaze-7f71390d1a0fc51222c5ac202c483c5847873697.tar.gz argaze-7f71390d1a0fc51222c5ac202c483c5847873697.tar.bz2 argaze-7f71390d1a0fc51222c5ac202c483c5847873697.tar.xz |
Renaming function.
Diffstat (limited to 'src/argaze.test/AreaOfInterest/AOIFeatures.py')
-rw-r--r-- | src/argaze.test/AreaOfInterest/AOIFeatures.py | 4 |
1 files changed, 2 insertions, 2 deletions
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() |