From e4c7b53f620d4d717295068dcd540867649ecd66 Mon Sep 17 00:00:00 2001 From: Andrew Port Date: Sun, 26 Sep 2021 18:17:58 -0700 Subject: [PATCH] fix text name --- test/test_path.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_path.py b/test/test_path.py index 8847bbb..04fb060 100644 --- a/test/test_path.py +++ b/test/test_path.py @@ -517,7 +517,7 @@ class ArcTest(unittest.TestCase): except ValueError: self.fail("Arc() raised ValueError unexpectedly!") - def test_points(self): + def test_point(self): arc1 = Arc(0j, 100 + 50j, 0, 0, 0, 100 + 50j) self.assertAlmostEqual(arc1.center, 100 + 0j, delta=TOL) self.assertAlmostEqual(arc1.theta, 180.0, delta=TOL)