diff --git a/Utilities/src/test/java/edu/stanford/hivdb/mutations/MutationSetTest.java b/Utilities/src/test/java/edu/stanford/hivdb/mutations/MutationSetTest.java index 51478e2b..54dd1121 100644 --- a/Utilities/src/test/java/edu/stanford/hivdb/mutations/MutationSetTest.java +++ b/Utilities/src/test/java/edu/stanford/hivdb/mutations/MutationSetTest.java @@ -505,9 +505,9 @@ public void testGetUnusualMutations() { public void testGetHighestMutPrevalences() { MutationSet muts = new MutationSet("RT:67N,RT:69KS,PR:82VIA,RT68W"); Map expected = new HashMap<>(); - expected.put(new Mutation(Gene.RT, 67, "N"), 10.373); - expected.put(new Mutation(Gene.RT, 69, "KS"), 0.813); - expected.put(new Mutation(Gene.PR, 82, "VIA"), 5.33); + expected.put(new Mutation(Gene.RT, 67, "N"), 9.0147444549135450); + expected.put(new Mutation(Gene.RT, 69, "KS"), 0.8036226800178583); + expected.put(new Mutation(Gene.PR, 82, "VIA"), 4.7026691174567015); expected.put(new Mutation(Gene.RT, 68, "W"), 0.0); assertEquals(expected, muts.getHighestMutPrevalences()); }