Increase integration test timeout

Increase time for CLI integration tests to account for @Grab downloads.
This commit is contained in:
Phillip Webb 2013-07-08 19:32:33 -07:00
parent dbd29f36ec
commit b81dff9214

View File

@ -73,7 +73,7 @@ public class SampleIntegrationTests {
return command;
}
});
this.command = future.get(30, TimeUnit.SECONDS);
this.command = future.get(4, TimeUnit.MINUTES);
}
@After