瀏覽代碼

Merge pull request #8735 from estesp/fix-test-timeout-on-drone

Up test timeout to 10s based on recent drone.io timeout failures
Alexandr Morozov 10 年之前
父節點
當前提交
77dcab133c
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      integration-cli/docker_cli_run_test.go

+ 1 - 1
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:
 		}