diff options
-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() |