Skip to content

Commit 9b13893

Browse files
Add uint suffix (#4213) (#4216)
(cherry picked from commit 46ff0ec) Co-authored-by: Michael Wrock <[email protected]>
1 parent a45b151 commit 9b13893

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nav2_graceful_controller/test/test_graceful_controller.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -814,7 +814,7 @@ TEST(GracefulControllerTest, pruningPlan) {
814814

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

820820
TEST(GracefulControllerTest, pruningPlanOutsideCostmap) {
@@ -880,7 +880,7 @@ TEST(GracefulControllerTest, pruningPlanOutsideCostmap) {
880880

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

886886
TEST(GracefulControllerTest, computeVelocityCommandRotate) {

0 commit comments

Comments
 (0)