Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
yejunhao committed Apr 7, 2024
1 parent f882bb3 commit 3e77fb4
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ public void testAddFindByRandom() {
}
}

// ffp should be less than 0.021
Assertions.assertThat((double) errorCount / num).isLessThan(0.021);
// ffp should be less than 0.03
Assertions.assertThat((double) errorCount / num).isLessThan(0.03);
}

@Test
Expand Down Expand Up @@ -115,8 +115,8 @@ public void testAddFindByRandomLong() {
}
}

// ffp should be less than 0.021
Assertions.assertThat((double) errorCount / num).isLessThan(0.021);
// ffp should be less than 0.03
Assertions.assertThat((double) errorCount / num).isLessThan(0.03);
}

private byte[] random() {
Expand Down

0 comments on commit 3e77fb4

Please sign in to comment.