Skip to content

Commit

Permalink
Fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
xchang1 committed Sep 12, 2024
1 parent c5ff420 commit f335c9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unittest/snarl_distance_index.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6906,7 +6906,7 @@ namespace vg {
SECTION("Traversal of chain") {
net_handle_t chain1_6 = distance_index.get_parent(distance_index.get_node_net_handle(n1->id()));
distance_index.for_each_child(chain1_6, [&](const net_handle_t& child) {
assert(distance_index.get_parent(child) == chain1_6);
assert(distance_index.canonical(distance_index.get_parent(child)) == distance_index.canonical(chain1_6));
});
}
SECTION("Minimum distances are correct") {
Expand Down

1 comment on commit f335c9c

@adamnovak
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

vg CI tests complete for branch looping_distance_bug. View the full report here.

16 tests passed, 0 tests failed and 0 tests skipped in 17840 seconds

Please sign in to comment.