Increase timeout for a test in the EngineFeaturesIntegrationTest

-This test was intermittently failing when run on the farm
This commit is contained in:
David Roazen 2013-03-12 23:53:26 -04:00
parent 3847de5290
commit 8ed78b453f
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ public class EngineFeaturesIntegrationTest extends WalkerTest {
//
// Loop over errors to throw, make sure they are the errors we get back from the engine, regardless of NT type
//
@Test(enabled = true, dataProvider = "EngineErrorHandlingTestProvider", timeOut = 60 * 1000 )
@Test(enabled = true, dataProvider = "EngineErrorHandlingTestProvider", timeOut = 300 * 1000 )
public void testEngineErrorHandlingTestProvider(final EngineErrorHandlingTestProvider cfg) {
for ( int i = 0; i < cfg.iterationsToTest; i++ ) {
final String root = "-T ErrorThrowing -R " + exampleFASTA;