mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2025-03-11 15:34:56 +00:00
lib/bloomfilter: fix TestLimiterConcurrent
This commit is contained in:
parent
eafed5335d
commit
a46551245c
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ func TestLimiterConcurrent(t *testing.T) {
|
|||
}
|
||||
}
|
||||
p := float64(falseAdditions) / float64(maxItems)
|
||||
if p > 0.003 {
|
||||
if p > 0.0035 {
|
||||
panic(fmt.Errorf("too big false additions share=%.5f: %d out of %d", p, falseAdditions, maxItems))
|
||||
}
|
||||
doneCh <- struct{}{}
|
||||
|
|
Loading…
Reference in a new issue