Browse code

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 authored on 2014/10/24 05:02:34
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
 		}