From 0cf57d427681e258c796c7628422cfded475d91f Mon Sep 17 00:00:00 2001 From: Andy Date: Tue, 28 Feb 2017 18:29:19 -0800 Subject: [PATCH] label swap/fix -- no effect --- test/test_path.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_path.py b/test/test_path.py index 8b78f2c..208a55b 100644 --- a/test/test_path.py +++ b/test/test_path.py @@ -912,8 +912,8 @@ class Test_intersect(unittest.TestCase): # `some_seg` and the second element refers to `another_seg`. # Also tests that the correct number of intersections is found. a = Line(0 + 200j, 300 + 200j) - b = CubicBezier(60 + 150j, 40 + 200j, 120 + 250j, 200 + 160j) - c = QuadraticBezier(40 + 150j, 70 + 200j, 210 + 300j) + b = QuadraticBezier(40 + 150j, 70 + 200j, 210 + 300j) + c = CubicBezier(60 + 150j, 40 + 200j, 120 + 250j, 200 + 160j) d = Arc(70 + 150j, 50 + 100j, 0, 0, 0, 200 + 100j) segdict = {'line': a, "quadratic": b, 'cubic': c, 'arc': d}