Lower recall threshold to prevent spurious test failures

This commit is contained in:
Dirkjan Ochtman 2021-01-07 21:43:59 +01:00
parent df24ddc186
commit 0872d04665
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ fn randomized() {
let recall = forced.intersection(&found).count();
println!("{} matched", recall);
assert!(recall > 95);
assert!(recall > 90);
}
#[derive(Clone, Copy, Debug)]