Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
tschuelia committed May 18, 2023
1 parent 71bfc46 commit c932fc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/src/difficulty.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ TEST(Difficulty, msa_features)
double patterns_per_taxa = features->patterns_per_taxa;
EXPECT_NEAR(patterns_per_taxa, n_patterns / (double)n_taxa, 0.001);

double patterns_per_site = features->patterns_per_taxa;
double patterns_per_site = features->patterns_per_site;
EXPECT_NEAR(patterns_per_site, n_patterns / (double)n_sites, 0.001);

double proportion_gaps = features->proportion_gaps;
Expand Down

0 comments on commit c932fc9

Please sign in to comment.