We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a303e68 commit fd2fd86Copy full SHA for fd2fd86
testutil/duration.go
@@ -7,11 +7,10 @@ import (
7
// Constants for timing out operations, usable for creating contexts
8
// that timeout or in require.Eventually.
9
const (
10
- WaitSuperShort = 100 * time.Millisecond
11
- WaitShort = 10 * time.Second
12
- WaitMedium = 15 * time.Second
13
- WaitLong = 25 * time.Second
14
- WaitSuperLong = 60 * time.Second
+ WaitShort = 10 * time.Second
+ WaitMedium = 15 * time.Second
+ WaitLong = 25 * time.Second
+ WaitSuperLong = 60 * time.Second
15
)
16
17
// Constants for delaying repeated operations, e.g. in
0 commit comments