Files
fasthttp/test_timeout_test.go
T
Erik Dubbelboer 8fe6af3619 Fix flaky race tests (#2292)
* Fix flaky race tests

* Drain streamed body in content length test
2026-06-13 09:00:14 +02:00

17 lines
209 B
Go

package fasthttp
import (
"runtime"
"time"
)
func testTimeout(timeout time.Duration) time.Duration {
if raceEnabled {
timeout *= 5
}
if runtime.GOOS == "windows" {
timeout *= 2
}
return timeout
}