|
23 | 23 | #include <cmath>
|
24 | 24 | #include <vector>
|
25 | 25 |
|
26 |
| -using behavior_path_planner::BehaviorPathPlannerNode; |
| 26 | +using ::behavior_path_planner::BehaviorPathPlannerNode; |
27 | 27 | using planning_test_utils::PlanningInterfaceTestManager;
|
28 | 28 |
|
29 | 29 | std::shared_ptr<PlanningInterfaceTestManager> generateTestManager()
|
@@ -52,26 +52,26 @@ std::shared_ptr<BehaviorPathPlannerNode> generateNode()
|
52 | 52 | ament_index_cpp::get_package_share_directory("behavior_path_lane_change_module");
|
53 | 53 |
|
54 | 54 | std::vector<std::string> module_names;
|
55 |
| - module_names.emplace_back("behavior_path_planner::AvoidanceByLaneChangeModuleManager"); |
| 55 | + module_names.emplace_back("autoware::behavior_path_planner::AvoidanceByLaneChangeModuleManager"); |
56 | 56 |
|
57 | 57 | std::vector<rclcpp::Parameter> params;
|
58 | 58 | params.emplace_back("launch_modules", module_names);
|
59 | 59 | node_options.parameter_overrides(params);
|
60 | 60 |
|
61 | 61 | test_utils::updateNodeOptions(
|
62 |
| - node_options, |
63 |
| - {planning_test_utils_dir + "/config/test_common.param.yaml", |
64 |
| - planning_test_utils_dir + "/config/test_nearest_search.param.yaml", |
65 |
| - planning_test_utils_dir + "/config/test_vehicle_info.param.yaml", |
66 |
| - behavior_path_planner_dir + "/config/behavior_path_planner.param.yaml", |
67 |
| - behavior_path_planner_dir + "/config/drivable_area_expansion.param.yaml", |
68 |
| - behavior_path_planner_dir + "/config/scene_module_manager.param.yaml", |
69 |
| - behavior_path_lane_change_module_dir + "/config/lane_change.param.yaml", |
70 |
| - ament_index_cpp::get_package_share_directory( |
71 |
| - "autoware_behavior_path_static_obstacle_avoidance_module") + |
72 |
| - "/config/static_obstacle_avoidance.param.yaml", |
73 |
| - ament_index_cpp::get_package_share_directory("behavior_path_avoidance_by_lane_change_module") + |
74 |
| - "/config/avoidance_by_lane_change.param.yaml"}); |
| 62 | + node_options, {planning_test_utils_dir + "/config/test_common.param.yaml", |
| 63 | + planning_test_utils_dir + "/config/test_nearest_search.param.yaml", |
| 64 | + planning_test_utils_dir + "/config/test_vehicle_info.param.yaml", |
| 65 | + behavior_path_planner_dir + "/config/behavior_path_planner.param.yaml", |
| 66 | + behavior_path_planner_dir + "/config/drivable_area_expansion.param.yaml", |
| 67 | + behavior_path_planner_dir + "/config/scene_module_manager.param.yaml", |
| 68 | + behavior_path_lane_change_module_dir + "/config/lane_change.param.yaml", |
| 69 | + ament_index_cpp::get_package_share_directory( |
| 70 | + "autoware_behavior_path_static_obstacle_avoidance_module") + |
| 71 | + "/config/static_obstacle_avoidance.param.yaml", |
| 72 | + ament_index_cpp::get_package_share_directory( |
| 73 | + "autoware_behavior_path_avoidance_by_lane_change_module") + |
| 74 | + "/config/avoidance_by_lane_change.param.yaml"}); |
75 | 75 |
|
76 | 76 | return std::make_shared<BehaviorPathPlannerNode>(node_options);
|
77 | 77 | }
|
|
0 commit comments