Bump the timeout when waiting for python HTTP server.

PiperOrigin-RevId: 204511630
Change-Id: Ib841a7144f3833321b0e69b8585b03c4ed55a265
This commit is contained in:
Nicolas Lacasse 2018-07-13 12:33:08 -07:00 committed by Shentubot
parent 5b09ec3b89
commit 6dce46d4c0
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ func TestPythonHello(t *testing.T) {
}
// Wait until it's up and running.
if err := d.WaitForHTTP(port, 5*time.Second); err != nil {
if err := d.WaitForHTTP(port, 10*time.Second); err != nil {
t.Fatalf("docker.WaitForHTTP() timeout: %v", err)
}