1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

test container state timeout with 200 milliseconds

Signed-off-by: lixiaobing10051267 <li.xiaobing1@zte.com.cn>
This commit is contained in:
lixiaobing10051267 2016-08-10 16:02:08 +08:00
parent 2f167a7609
commit 51f927d4e5

View file

@ -65,7 +65,7 @@ func TestStateTimeoutWait(t *testing.T) {
}()
select {
case <-time.After(200 * time.Millisecond):
t.Fatal("Stop callback doesn't fire in 100 milliseconds")
t.Fatal("Stop callback doesn't fire in 200 milliseconds")
case <-stopped:
t.Log("Stop callback fired")
}