1
0
mirror of https://github.com/moby/moby.git synced 2025-07-30 18:23:29 +03:00

Windows: Timeout TestContainerApiPostContainerStop

Signed-off-by: John Howard <jhoward@microsoft.com>
This commit is contained in:
John Howard
2016-04-11 20:48:00 -07:00
parent fa4fea3233
commit d691b4af18
2 changed files with 2 additions and 6 deletions

View File

@ -1231,7 +1231,7 @@ func (s *DockerSuite) TestContainerApiPostContainerStop(c *check.C) {
c.Assert(err, checker.IsNil)
// 204 No Content is expected, not 200
c.Assert(statusCode, checker.Equals, http.StatusNoContent)
c.Assert(waitInspect(containerID, "{{ .State.Running }}", "false", 5*time.Second), checker.IsNil)
c.Assert(waitInspect(containerID, "{{ .State.Running }}", "false", 60*time.Second), checker.IsNil)
}
// #14170