Skip to content

Commit

Permalink
Fix test_simplest_mutation_edges
Browse files Browse the repository at this point in the history
  • Loading branch information
lukashuebner committed Apr 4, 2023
1 parent a816a79 commit 5437546
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions c/tests/test_trees.c
Original file line number Diff line number Diff line change
Expand Up @@ -3739,13 +3739,13 @@ test_simplest_mutation_edges(void)
const char *mutations = "0 1 1\n"
"0 0 1\n"
"0 2 1\n"
"1 0 1\n"
"1 2 1\n"
"1 1 1\n"
"1 2 1\n";
"1 0 1\n";
tsk_treeseq_t ts;
tsk_tree_t tree;
/* We have mutations over roots, samples and just isolated nodes */
tsk_id_t mutation_edges[] = { -1, 0, -1, 1, -1, -1 };
tsk_id_t mutation_edges[] = { -1, 0, -1, -1, -1, 1 };
tsk_size_t i, j, k, t;
tsk_mutation_t mut;
tsk_site_t site;
Expand Down

0 comments on commit 5437546

Please sign in to comment.