Skip to content

Commit

Permalink
Deactivate effort test
Browse files Browse the repository at this point in the history
  • Loading branch information
christophfroehlich committed Aug 4, 2023
1 parent c531b10 commit ee2db7a
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1110,10 +1110,13 @@ TEST_P(TrajectoryControllerTestParameterized, invalid_message)
traj_msg.points[0].accelerations = {1.0, 2.0};
EXPECT_FALSE(traj_controller_->validate_trajectory_msg(traj_msg));

// Effort is not supported in trajectory message
// Effort is not supported in trajectory message
#if 0
// TODO(christophfroehlich) activate with #730
traj_msg = good_traj_msg;
traj_msg.points[0].effort = {1.0, 2.0, 3.0};
EXPECT_FALSE(traj_controller_->validate_trajectory_msg(traj_msg));
#endif

// Non-strictly increasing waypoint times
traj_msg = good_traj_msg;
Expand Down

0 comments on commit ee2db7a

Please sign in to comment.