Skip to content

Commit

Permalink
Remove points_velocities for position_error tests
Browse files Browse the repository at this point in the history
  • Loading branch information
christophfroehlich committed Oct 10, 2023
1 parent 877486e commit a57a960
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -476,10 +476,8 @@ TEST_P(TrajectoryControllerTestParameterized, position_error_not_angle_wraparoun
// *INDENT-OFF*
std::vector<std::vector<double>> points{
{{3.3, 4.4, 6.6}}, {{7.7, 8.8, 9.9}}, {{10.10, 11.11, 12.12}}};
std::vector<std::vector<double>> points_velocities{
{{0.01, 0.01, 0.01}}, {{0.05, 0.05, 0.05}}, {{0.06, 0.06, 0.06}}};
// *INDENT-ON*
publish(time_from_start, points, rclcpp::Time(), {}, {});
publish(time_from_start, points, rclcpp::Time());
traj_controller_->wait_for_trajectory(executor);

// first update
Expand Down Expand Up @@ -742,10 +740,8 @@ TEST_P(TrajectoryControllerTestParameterized, position_error_angle_wraparound)
// *INDENT-OFF*
std::vector<std::vector<double>> points{
{{3.3, 4.4, 6.6}}, {{7.7, 8.8, 9.9}}, {{10.10, 11.11, 12.12}}};
std::vector<std::vector<double>> points_velocities{
{{0.01, 0.01, 0.01}}, {{0.05, 0.05, 0.05}}, {{0.06, 0.06, 0.06}}};
// *INDENT-ON*
publish(time_from_start, points, rclcpp::Time(), {}, {});
publish(time_from_start, points, rclcpp::Time());
traj_controller_->wait_for_trajectory(executor);

// first update
Expand Down

0 comments on commit a57a960

Please sign in to comment.