=== modified file 'src/display/curve-test.h' --- src/display/curve-test.h 2011-05-06 06:21:51 +0000 +++ src/display/curve-test.h 2014-04-11 10:28:56 +0000 @@ -21,7 +21,7 @@ path1.close(); // Closed path (ClosingSegment is zero length) path2.append(Geom::LineSegment(Geom::Point(2,0),Geom::Point(3,0))); - // TODO fix path2.append(Geom::BezierCurve<3>(Geom::Point(3,0),Geom::Point(2,1),Geom::Point(1,1),Geom::Point(2,0))); + path2.append(Geom::BezierCurveN<3>(Geom::Point(3,0),Geom::Point(2,1),Geom::Point(1,1),Geom::Point(2,0))); path2.close(); // Open path path3.append(Geom::SVGEllipticalArc(Geom::Point(4,0),1,2,M_PI,false,false,Geom::Point(5,1))); @@ -105,7 +105,7 @@ pv.push_back(path3); pv.push_back(path4); SPCurve curve(pv); - TS_ASSERT_EQUALS(curve.nodes_in_path() , 12u); + TS_ASSERT_EQUALS(curve.nodes_in_path() , 11u); } }