From 4d301f0059c4e2e4ecea1ed41f2c1588b8db6990 Mon Sep 17 00:00:00 2001 From: John Howard Date: Mon, 28 Sep 2015 14:08:26 -0700 Subject: [PATCH] Windows: Fix TestRunStdinBlockedAfterContainerExit Signed-off-by: John Howard --- integration-cli/docker_cli_run_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-cli/docker_cli_run_test.go b/integration-cli/docker_cli_run_test.go index dca1c0e2c..76c504ec0 100644 --- a/integration-cli/docker_cli_run_test.go +++ b/integration-cli/docker_cli_run_test.go @@ -3403,7 +3403,7 @@ func (s *DockerSuite) TestRunStdinBlockedAfterContainerExit(c *check.C) { select { case err := <-waitChan: c.Assert(err, check.IsNil) - case <-time.After(3 * time.Second): + case <-time.After(30 * time.Second): c.Fatal("timeout waiting for command to exit") } }