Skip to content

Commit 3620605

Browse files
committed
Fix
1 parent 0f8c211 commit 3620605

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

testutil/duration_windows.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@ import "time"
77
//
88
// Windows durations are adjusted for slow CI workers.
99
const (
10-
WaitShort = 10 * time.Second
11-
WaitMedium = 20 * time.Second
12-
WaitLong = 30 * time.Second
10+
WaitShort = 10 * time.Second
11+
WaitMedium = 20 * time.Second
12+
WaitLong = 30 * time.Second
13+
WaitSuperLong = 60 * time.Second
1314
)
1415

1516
// Constants for delaying repeated operations, e.g. in

0 commit comments

Comments
 (0)