From 93e17b2ecadc4a409fc55b1460bc2721a4345716 Mon Sep 17 00:00:00 2001 From: Jessica Frazelle Date: Wed, 22 Oct 2014 15:51:14 -0700 Subject: [PATCH] TestRunRedirectStdout kept failing with timed out. Docker-DCO-1.1-Signed-off-by: Jessica Frazelle (github: jfrazelle) --- 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 eeb3601e7a..c4cf8820bd 100644 --- a/integration-cli/docker_cli_run_test.go +++ b/integration-cli/docker_cli_run_test.go @@ -2266,7 +2266,7 @@ func TestRunRedirectStdout(t *testing.T) { }() select { - case <-time.After(time.Second): + case <-time.After(2 * time.Second): t.Fatal("command timeout") case <-ch: }