aboutsummaryrefslogtreecommitdiff
path: root/src/argaze.test
diff options
context:
space:
mode:
authorThéo de la Hogue2022-12-07 16:23:23 +0100
committerThéo de la Hogue2022-12-07 16:23:23 +0100
commit7f71390d1a0fc51222c5ac202c483c5847873697 (patch)
treeddac4114586bf1e36434e89e825842f6192a6547 /src/argaze.test
parent5d61da8fba22140748aa03acdc3800913d161183 (diff)
downloadargaze-7f71390d1a0fc51222c5ac202c483c5847873697.zip
argaze-7f71390d1a0fc51222c5ac202c483c5847873697.tar.gz
argaze-7f71390d1a0fc51222c5ac202c483c5847873697.tar.bz2
argaze-7f71390d1a0fc51222c5ac202c483c5847873697.tar.xz
Renaming function.
Diffstat (limited to 'src/argaze.test')
-rw-r--r--src/argaze.test/AreaOfInterest/AOIFeatures.py4
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()