Skip to content

Commit

Permalink
updating tests
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveMacenski committed Nov 16, 2023
1 parent 0816f5f commit 98e3502
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions nav2_smac_planner/test/test_a_star.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ TEST(AStarTest, test_a_star_se2)
EXPECT_TRUE(a_star.createPath(path, num_it, tolerance, expansions.get()));

// check path is the right size and collision free
EXPECT_EQ(num_it, 3186);
EXPECT_EQ(path.size(), 64u);
EXPECT_EQ(num_it, 3146);
EXPECT_EQ(path.size(), 63u);
for (unsigned int i = 0; i != path.size(); i++) {
EXPECT_EQ(costmapA->getCost(path[i].x, path[i].y), 0);
}
Expand Down Expand Up @@ -233,8 +233,8 @@ TEST(AStarTest, test_a_star_lattice)
EXPECT_TRUE(a_star.createPath(path, num_it, tolerance));

// check path is the right size and collision free
EXPECT_EQ(num_it, 26);
EXPECT_GT(path.size(), 47u);
EXPECT_EQ(num_it, 22);
EXPECT_GT(path.size(), 46u);
for (unsigned int i = 0; i != path.size(); i++) {
EXPECT_EQ(costmapA->getCost(path[i].x, path[i].y), 0);
}
Expand Down

0 comments on commit 98e3502

Please sign in to comment.