Skip to content

Commit

Permalink
Fix a failing smoothness test
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyZe committed Apr 5, 2023
1 parent a1e90ac commit a7362c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ TEST_F(RobotTrajectoryTestFixture, RobotTrajectorySmoothness)

const auto smoothness = robot_trajectory::smoothness(*trajectory);
ASSERT_TRUE(smoothness.has_value());
EXPECT_GT(smoothness.value(), 0.0);
EXPECT_EQ(smoothness.value(), 0.0);

// Check for empty trajectory
trajectory->clear();
Expand Down

0 comments on commit a7362c9

Please sign in to comment.