Browse code

Up test timeout to 10s based on recent drone.io timeout failures

Docker-DCO-1.1-Signed-off-by: Phil Estes <estesp@linux.vnet.ibm.com> (github: estesp)

Phil Estes authored on 2014/10/24 03:30:39
Showing 1 changed files
... ...
@@ -2266,7 +2266,7 @@ func TestRunRedirectStdout(t *testing.T) {
2266 2266
 		}()
2267 2267
 
2268 2268
 		select {
2269
-		case <-time.After(2 * time.Second):
2269
+		case <-time.After(10 * time.Second):
2270 2270
 			t.Fatal("command timeout")
2271 2271
 		case <-ch:
2272 2272
 		}