Skip to content

Commit

Permalink
Add uint suffix (ros-navigation#4213)
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeWrock committed Mar 25, 2024
1 parent 5bf14fc commit 46ff0ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nav2_graceful_controller/test/test_graceful_controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,7 @@ TEST(GracefulControllerTest, pruningPlan) {

// Check results: the plan should be pruned
auto transformed_plan = controller->transformGlobalPlan(robot_pose);
EXPECT_EQ(transformed_plan.poses.size(), 3);
EXPECT_EQ(transformed_plan.poses.size(), 3u);
}

TEST(GracefulControllerTest, pruningPlanOutsideCostmap) {
Expand Down Expand Up @@ -880,7 +880,7 @@ TEST(GracefulControllerTest, pruningPlanOutsideCostmap) {

// Check results: the plan should be pruned
auto transformed_plan = controller->transformGlobalPlan(robot_pose);
EXPECT_EQ(transformed_plan.poses.size(), 2);
EXPECT_EQ(transformed_plan.poses.size(), 2u);
}

TEST(GracefulControllerTest, computeVelocityCommandRotate) {
Expand Down

0 comments on commit 46ff0ec

Please sign in to comment.