From 94b1bb82e19242e87edfc688bb3d3c3c010d4603 Mon Sep 17 00:00:00 2001 From: Michael Crosby Date: Wed, 3 Aug 2016 15:25:27 -0700 Subject: [PATCH] Decrease sleep to 2 seconds Signed-off-by: Michael Crosby --- integration-cli/docker_api_containers_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-cli/docker_api_containers_test.go b/integration-cli/docker_api_containers_test.go index 99ea700955..fcb69e591f 100644 --- a/integration-cli/docker_api_containers_test.go +++ b/integration-cli/docker_api_containers_test.go @@ -874,7 +874,7 @@ func (s *DockerSuite) TestContainerApiWait(c *check.C) { if daemonPlatform == "windows" { sleepCmd = "sleep" } - dockerCmd(c, "run", "--name", name, "busybox", sleepCmd, "5") + dockerCmd(c, "run", "--name", name, "busybox", sleepCmd, "2") status, body, err := sockRequest("POST", "/containers/"+name+"/wait", nil) c.Assert(err, checker.IsNil)