mirror of
https://github.com/minio/minio.git
synced 2025-04-04 03:40:30 -04:00
tests: Lower expectation in addr selection in rand cache dialer (#10739)
Test TestDialContextWithDNSCacheRand was failing sometimes because it depends on a random selection of addresses when testing random DNS resolution from cache. Lower addr selection exception to 10%
This commit is contained in:
parent
5cc23ae052
commit
0e0c53bba4
@ -132,8 +132,8 @@ func TestDialContextWithDNSCacheRand(t *testing.T) {
|
|||||||
|
|
||||||
for _, c := range count {
|
for _, c := range count {
|
||||||
got := float32(c) / float32(100)
|
got := float32(c) / float32(100)
|
||||||
if got < float32(0.2) {
|
if got < float32(0.1) {
|
||||||
t.Fatalf("expected 0.2 rate got %f", got)
|
t.Fatalf("expected 0.1 rate got %f", got)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user