Skip to content

Commit

Permalink
feat: update autoware_mpc_lateral_controller dependencies
Browse files Browse the repository at this point in the history
The autoware_mpc_lateral_controller package.xml file was modified to update the dependency from `planning_test_utils` to `autoware_test_utils`. Additionally, the test_mpc.cpp file was updated to include the `autoware_test_utils` header.

Signed-off-by: kyoichi-sugahara <[email protected]>
  • Loading branch information
kyoichi-sugahara committed Jun 24, 2024
1 parent fd109a9 commit 1204fce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion control/autoware_mpc_lateral_controller/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<depend>geometry_msgs</depend>
<depend>interpolation</depend>
<depend>osqp_interface</depend>
<depend>planning_test_utils</depend>
<depend>autoware_test_utils</depend>
<depend>rclcpp</depend>
<depend>rclcpp_components</depend>
<depend>std_msgs</depend>
Expand Down
2 changes: 2 additions & 0 deletions control/autoware_mpc_lateral_controller/test/test_mpc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include "ament_index_cpp/get_package_share_directory.hpp"
#include "autoware/mpc_lateral_controller/mpc.hpp"
#include "autoware/mpc_lateral_controller/qp_solver/qp_solver_osqp.hpp"
#include "autoware/mpc_lateral_controller/qp_solver/qp_solver_unconstraint_fast.hpp"
Expand All @@ -20,6 +21,7 @@
#include "autoware/mpc_lateral_controller/vehicle_model/vehicle_model_bicycle_kinematics_no_delay.hpp"
#include "gtest/gtest.h"
#include "rclcpp/rclcpp.hpp"
#include "autoware_test_utils/autoware_test_utils.hpp"

#include "autoware_control_msgs/msg/lateral.hpp"
#include "autoware_planning_msgs/msg/trajectory.hpp"
Expand Down

0 comments on commit 1204fce

Please sign in to comment.