Skip to content

Commit c51db21

Browse files
committed
Do not expect forced control point in output
1 parent 8c8426f commit c51db21

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/src/core/testqgscurve.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ void TestQgsCurve::curveToLine()
100100
/* op: Maximum of 70 degrees of angle, symmetric */
101101
/* See https://issues.qgis.org/issues/16722 */
102102
TEST_C2L( circularString, 70 * M_PI / 180, QgsAbstractGeometry::MaximumAngle,
103-
"LineString (0 0, 50 86.6, 100 100, 150 86.6, 200 0)", 2 );
103+
"LineString (0 0, 50 86.6, 150 86.6, 200 0)", 2 );
104104

105105
/* input: 2 arcs of 2 quadrants each (180 degrees + 180 degrees other direction) */
106106
circularString.reset( dynamic_cast<QgsCircularString *>(
@@ -112,7 +112,7 @@ void TestQgsCurve::curveToLine()
112112

113113
/* op: Maximum of M_PI / 3 degrees of angle */
114114
TEST_C2L( circularString, M_PI / 3, QgsAbstractGeometry::MaximumAngle,
115-
"LineString (0 0, 50 86.6, 100 100, 150 86.6, 200 0, 250 -86.6, 300 -100, 350 -86.6, 400 0)", 2 );
115+
"LineString (0 0, 50 86.6, 150 86.6, 200 0, 250 -86.6, 350 -86.6, 400 0)", 2 );
116116
}
117117

118118

0 commit comments

Comments
 (0)