Browse Source

Merge pull request #20875 from Microsoft/jjh/testlogsapiwithstdout

Windows CI Reliablity: TestLogsApiWithStdout
David Calavera 9 years ago
parent
commit
0e0a8ade61
1 changed files with 1 additions and 1 deletions
  1. 1 1
      integration-cli/docker_api_logs_test.go

+ 1 - 1
integration-cli/docker_api_logs_test.go

@@ -46,7 +46,7 @@ func (s *DockerSuite) TestLogsApiWithStdout(c *check.C) {
 		if !strings.HasSuffix(l.out, "hello") {
 		if !strings.HasSuffix(l.out, "hello") {
 			c.Fatalf("expected log output to container 'hello', but it does not")
 			c.Fatalf("expected log output to container 'hello', but it does not")
 		}
 		}
-	case <-time.After(2 * time.Second):
+	case <-time.After(20 * time.Second):
 		c.Fatal("timeout waiting for logs to exit")
 		c.Fatal("timeout waiting for logs to exit")
 	}
 	}
 }
 }