File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ func TestStop(t *testing.T) {
125
125
if sig != syscall .SIGHUP || * sendUncaughtSighup == 1 {
126
126
syscall .Kill (syscall .Getpid (), sig )
127
127
}
128
- time .Sleep (10 * time .Millisecond )
128
+ time .Sleep (100 * time .Millisecond )
129
129
130
130
// Ask for signal
131
131
c := make (chan os.Signal , 1 )
@@ -140,7 +140,7 @@ func TestStop(t *testing.T) {
140
140
select {
141
141
case s := <- c :
142
142
t .Fatalf ("unexpected signal %v" , s )
143
- case <- time .After (10 * time .Millisecond ):
143
+ case <- time .After (100 * time .Millisecond ):
144
144
// nothing to read - good
145
145
}
146
146
@@ -154,7 +154,7 @@ func TestStop(t *testing.T) {
154
154
select {
155
155
case s := <- c :
156
156
t .Fatalf ("unexpected signal %v" , s )
157
- case <- time .After (10 * time .Millisecond ):
157
+ case <- time .After (100 * time .Millisecond ):
158
158
// nothing to read - good
159
159
}
160
160
}
You can’t perform that action at this time.
0 commit comments