Thanks to visit codestin.com Credit goes to github.com
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 1757985 commit 7468299Copy full SHA for 7468299
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