From ee17b93df9ef2150d0ef25e077f1f87637a54508 Mon Sep 17 00:00:00 2001 From: Phil Estes Date: Thu, 23 Oct 2014 14:30:39 -0400 Subject: [PATCH] Up test timeout to 10s based on recent drone.io timeout failures Docker-DCO-1.1-Signed-off-by: Phil Estes (github: estesp) --- 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 c4cf8820bd..db63e3408d 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(2 * time.Second): + case <-time.After(10 * time.Second): t.Fatal("command timeout") case <-ch: }