Increase SampleIntegrationTests run timeouts

Increase the timeouts to give CI builds more time should dependencies
be missing.
This commit is contained in:
Phillip Webb 2013-09-03 21:55:21 -07:00
parent 16cf2faa1b
commit a44f8bc59e
1 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ public class SampleIntegrationTests {
return command;
}
});
this.command = future.get(4, TimeUnit.MINUTES);
this.command = future.get(6, TimeUnit.MINUTES);
}
@Before