Skip to content

Commit fd2fd86

Browse files
committed
revereted WaitSuperShort - not used anymore
1 parent a303e68 commit fd2fd86

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

testutil/duration.go

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,10 @@ import (
77
// Constants for timing out operations, usable for creating contexts
88
// that timeout or in require.Eventually.
99
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
10+
WaitShort = 10 * time.Second
11+
WaitMedium = 15 * time.Second
12+
WaitLong = 25 * time.Second
13+
WaitSuperLong = 60 * time.Second
1514
)
1615

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

0 commit comments

Comments
 (0)