Skip to content

Commit

Permalink
Missed the namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
kunaltyagi committed Dec 20, 2021
1 parent b315b4f commit 02cc64f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/search/test_search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ TEST(PCL, Search_nonTrivialDistance)
sorted.makeNonTrivial(indices, distances);

EXPECT_EQ(distances.size(), 7);
EXPECT_EQ_VECTOR(indices, Indices{3, 4, 5, 6, 7, 8, 9});
test::EXPECT_EQ_VECTORS(indices, Indices{3, 4, 5, 6, 7, 8, 9});
}

// on unsorted
Expand All @@ -564,7 +564,7 @@ TEST(PCL, Search_nonTrivialDistance)
unsorted.makeNonTrivial(indices, distances);

EXPECT_EQ(distances.size(), 4);
EXPECT_EQ_VECTOR(indices, Indices{3, 4, 5, 9});
test::EXPECT_EQ_VECTORS(indices, Indices{3, 4, 5, 9});
}
}
// @TODO
Expand All @@ -584,7 +584,7 @@ TEST(PCL, Search_nonTrivialIdx)
sorted.makeNonTrivial(test_idx, indices, distances);

EXPECT_EQ(distances.size(), 7);
EXPECT_EQ_VECTOR(indices, Indices{2, 3, 1, 1, 1, 4, 5});
test::EXPECT_EQ_VECTORS(indices, Indices{2, 3, 1, 1, 1, 4, 5});
}

// on unsorted
Expand All @@ -595,7 +595,7 @@ TEST(PCL, Search_nonTrivialIdx)
unsorted.makeNonTrivial(test_idx, indices, distances);

EXPECT_EQ(distances.size(), 4);
EXPECT_EQ_VECTOR(indices, Indices{2, 3, 4, 5});
test::EXPECT_EQ_VECTORS(indices, Indices{2, 3, 4, 5});
}
}
// @TODO
Expand Down

0 comments on commit 02cc64f

Please sign in to comment.