Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
Signed-off-by: Alberto Tudela <ajtudela@gmail.com>
  • Loading branch information
ajtudela committed Mar 11, 2024
1 parent 7e5ad45 commit 6d1455a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_segmentations.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ TEST(JumpDistanceTest, performSegmentation) {
// Check the number of points in the segment
// Should be 5 points in the segment
// as the last point is a NaN point
EXPECT_EQ(segments[0].size(), points.size()-1);
EXPECT_EQ(segments[0].size(), points.size() - 1);

// Now we set the points with a distance of 1.0
points = create_points(5, 1.0);
Expand Down

0 comments on commit 6d1455a

Please sign in to comment.