Skip to content

Commit

Permalink
Merge pull request #514 from twitter/ggonzalez/fix_flaky_minhasherspec
Browse files Browse the repository at this point in the history
Fix flaky `MinHasherSpec` test.  Fixes #500
  • Loading branch information
johnynek committed Feb 26, 2016
2 parents 849051c + 084060d commit 7bcbc68
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ class MinHasherSpec extends WordSpec with Matchers {
"measure 0.5 similarity in 1024 bytes with < 0.1 error" in {
test(new MinHasher32(0.5, 1024), 0.5, 0.1)
}
"measure 0.8 similarity in 1024 bytes with < 0.05 error" in {
test(new MinHasher32(0.8, 1024), 0.8, 0.05)
"measure 0.8 similarity in 1024 bytes with < 0.1 error" in {
test(new MinHasher32(0.8, 1024), 0.8, 0.1)
}
"measure 1.0 similarity in 1024 bytes with < 0.01 error" in {
test(new MinHasher32(1.0, 1024), 1.0, 0.01)
Expand Down

0 comments on commit 7bcbc68

Please sign in to comment.