Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
stevedanomodolor committed Mar 24, 2024
1 parent 3caa918 commit 06d860b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nav2_smac_planner/test/test_a_star.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ TEST(AStarTest, test_a_star_2d)

EXPECT_TRUE(a_star_2.getStart() != nullptr);
EXPECT_TRUE(!a_star_2.getGoals().empty());
EXPECT_TRUE(!a_star_2.getGoals().size() == 1);
EXPECT_TRUE(a_star_2.getGoals().size() == 1);
EXPECT_EQ(a_star_2.getSizeX(), 100u);
EXPECT_EQ(a_star_2.getSizeY(), 100u);
EXPECT_EQ(a_star_2.getSizeDim3(), 1u);
Expand Down

0 comments on commit 06d860b

Please sign in to comment.