Skip to content

Commit

Permalink
Fixing build warning (#3667) (#3673)
Browse files Browse the repository at this point in the history
(cherry picked from commit 7d4b199)

Co-authored-by: Steve Macenski <[email protected]>
  • Loading branch information
mergify[bot] and SteveMacenski authored Jun 30, 2023
1 parent 3bb9a95 commit ead48a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nav2_smac_planner/test/test_nodelattice.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ TEST(NodeLatticeTest, test_node_lattice_custom_footprint)
// Test that the node is valid though all motion primitives poses for custom footprint
nav2_smac_planner::MotionPrimitivePtrs motion_primitives =
nav2_smac_planner::NodeLattice::motion_table.getMotionPrimitives(&node);
EXPECT_GT(motion_primitives.size(), 0);
EXPECT_GT(motion_primitives.size(), 0u);
for (unsigned int i = 0; i < motion_primitives.size(); i++) {
EXPECT_EQ(node.isNodeValid(true, checker.get(), motion_primitives[i], false), true);
EXPECT_EQ(node.isNodeValid(true, checker.get(), motion_primitives[i], true), true);
Expand Down

0 comments on commit ead48a9

Please sign in to comment.