Skip to content

Commit

Permalink
Fix MinHasherSpec test description to match new error bound
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Gonzalez committed Feb 26, 2016
1 parent 2c8ad33 commit 084060d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ 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 {
"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 {
Expand Down

0 comments on commit 084060d

Please sign in to comment.