Skip to content

Commit

Permalink
Use correct overload in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed Dec 2, 2024
1 parent 9837182 commit d6fed94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unittests/links.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ TEST_CASE("LinkNavigator same types", "[links]") {
REQUIRE(linkedClusters[0].o == clusters[2]);
REQUIRE(linkedClusters[0].weight == 0.66f);

linkedClusters = navigator.getLinked(clusters[1], podio::ReturnTo);
linkedClusters = navigator.getLinked(clusters[1], podio::ReturnFrom);
REQUIRE(linkedClusters.size() == 1);
REQUIRE(linkedClusters[0].o == clusters[0]);
REQUIRE(linkedClusters[0].weight == 0.5f);
Expand Down

0 comments on commit d6fed94

Please sign in to comment.