Skip to content

Commit 2cb8ccc

Browse files
committed
Fix duration on windows builds
Signed-off-by: Danny Kopping <danny@coder.com>
1 parent f42af07 commit 2cb8ccc

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

testutil/duration_windows.go

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

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

0 commit comments

Comments
 (0)