Skip to content

Commit 4cfaabd

Browse files
chore(ztest/timeout): capture original scale after err handling (#1138)
1 parent 11a750e commit 4cfaabd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/ztest/timeout.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ func Sleep(base time.Duration) {
4242
// Initialize checks the environment and alters the timeout scale accordingly.
4343
// It returns a function to undo the scaling.
4444
func Initialize(factor string) func() {
45-
original := _timeoutScale
4645
fv, err := strconv.ParseFloat(factor, 64)
4746
if err != nil {
4847
panic(err)
4948
}
49+
original := _timeoutScale
5050
_timeoutScale = fv
5151
return func() { _timeoutScale = original }
5252
}

0 commit comments

Comments
 (0)