@@ -193,7 +193,7 @@ TYPED_TEST(OMPLTestFixture, OMPLFreespacePlannerUnit) // NOLINT
193193 auto plan_profile = std::make_shared<OMPLRealVectorPlanProfile>();
194194 plan_profile->contact_manager_config .default_margin = 0.025 ;
195195 plan_profile->collision_check_config .longest_valid_segment_length = 0.1 ;
196- plan_profile->collision_check_config .type = tesseract_collision::CollisionEvaluatorType::CONTINUOUS ;
196+ plan_profile->collision_check_config .type = tesseract_collision::CollisionEvaluatorType::LVS_CONTINUOUS ;
197197 plan_profile->solver_config .planning_time = 10 ;
198198 plan_profile->solver_config .optimize = false ;
199199 plan_profile->solver_config .max_solutions = 2 ;
@@ -352,7 +352,7 @@ TYPED_TEST(OMPLTestFixture, OMPLFreespaceCartesianGoalPlannerUnit) // NOLINT
352352 auto plan_profile = std::make_shared<OMPLRealVectorPlanProfile>();
353353 plan_profile->contact_manager_config .default_margin = 0.02 ;
354354 plan_profile->collision_check_config .longest_valid_segment_length = 0.1 ;
355- plan_profile->collision_check_config .type = tesseract_collision::CollisionEvaluatorType::CONTINUOUS ;
355+ plan_profile->collision_check_config .type = tesseract_collision::CollisionEvaluatorType::LVS_CONTINUOUS ;
356356 plan_profile->solver_config .planning_time = 10 ;
357357 plan_profile->solver_config .optimize = false ;
358358 plan_profile->solver_config .max_solutions = 2 ;
@@ -378,7 +378,7 @@ TYPED_TEST(OMPLTestFixture, OMPLFreespaceCartesianGoalPlannerUnit) // NOLINT
378378 CONSOLE_BRIDGE_logError (" CI Error: %s" , planner_response.message .c_str ());
379379 }
380380 EXPECT_TRUE (&planner_response);
381- EXPECT_EQ (planner_response.results .getMoveInstructionCount (), 11 );
381+ EXPECT_GE (planner_response.results .getMoveInstructionCount (), 10 );
382382 EXPECT_TRUE (wp1.getPosition ().isApprox (
383383 getJointPosition (planner_response.results .getFirstMoveInstruction ()->getWaypoint ()), 1e-5 ));
384384
0 commit comments