We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11a750e commit 4cfaabdCopy full SHA for 4cfaabd
internal/ztest/timeout.go
@@ -42,11 +42,11 @@ func Sleep(base time.Duration) {
42
// Initialize checks the environment and alters the timeout scale accordingly.
43
// It returns a function to undo the scaling.
44
func Initialize(factor string) func() {
45
- original := _timeoutScale
46
fv, err := strconv.ParseFloat(factor, 64)
47
if err != nil {
48
panic(err)
49
}
+ original := _timeoutScale
50
_timeoutScale = fv
51
return func() { _timeoutScale = original }
52
0 commit comments