Skip to content

Commit 2bb0502

Browse files
Fixing build warning (#3667) (#3672)
(cherry picked from commit 7d4b199) Co-authored-by: Steve Macenski <[email protected]>
1 parent a1d489f commit 2bb0502

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nav2_smac_planner/test/test_nodelattice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ TEST(NodeLatticeTest, test_node_lattice_custom_footprint)
347347
// Test that the node is valid though all motion primitives poses for custom footprint
348348
nav2_smac_planner::MotionPrimitivePtrs motion_primitives =
349349
nav2_smac_planner::NodeLattice::motion_table.getMotionPrimitives(&node);
350-
EXPECT_GT(motion_primitives.size(), 0);
350+
EXPECT_GT(motion_primitives.size(), 0u);
351351
for (unsigned int i = 0; i < motion_primitives.size(); i++) {
352352
EXPECT_EQ(node.isNodeValid(true, checker.get(), motion_primitives[i], false), true);
353353
EXPECT_EQ(node.isNodeValid(true, checker.get(), motion_primitives[i], true), true);

0 commit comments

Comments
 (0)