From 51f927d4e5007d11d71a9cd68a6b1e93828becc5 Mon Sep 17 00:00:00 2001
From: lixiaobing10051267
Date: Wed, 10 Aug 2016 16:02:08 +0800
Subject: [PATCH] test container state timeout with 200 milliseconds
Signed-off-by: lixiaobing10051267
---
container/state_test.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/container/state_test.go b/container/state_test.go
index 83ff1efcb6..f10de12f2a 100644
--- a/container/state_test.go
+++ b/container/state_test.go
@@ -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")
}