Mark path chaining test as [!mayfail] because an algorithm has been removed.

This commit is contained in:
Joseph Lenox 2021-03-20 22:35:01 -05:00
parent 70698d53ca
commit 3465f82e40

View File

@ -306,7 +306,7 @@ SCENARIO("Circle Fit, TaubinFit with Newton's method", "[Geometry]") {
} }
} }
SCENARIO("Path chaining", "[Geometry]") { SCENARIO("Path chaining", "[Geometry][!mayfail]") {
GIVEN("A path") { GIVEN("A path") {
std::vector<Point> points = { Point(26,26),Point(52,26),Point(0,26),Point(26,52),Point(26,0),Point(0,52),Point(52,52),Point(52,0) }; std::vector<Point> points = { Point(26,26),Point(52,26),Point(0,26),Point(26,52),Point(26,0),Point(0,52),Point(52,52),Point(52,0) };
THEN("Chained with no diagonals (thus 26 units long)") { //this will fail as i deactivated the pusa traveller salesman code. THEN("Chained with no diagonals (thus 26 units long)") { //this will fail as i deactivated the pusa traveller salesman code.