Merge pull request #34 from broadinstitute/md_longer_default_timeout

Extend default timeout to 20 minutes
This commit is contained in:
depristo 2013-02-13 17:44:30 -08:00
commit 5cc5aedcd1
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ import java.lang.reflect.Method;
* @version 0.1
*/
public class TestNGTestTransformer implements IAnnotationTransformer {
public static final long DEFAULT_TIMEOUT = 1000 * 60 * 10; // 10 minutes max per test
public static final long DEFAULT_TIMEOUT = 1000 * 60 * 20; // 20 minutes max per test
final static Logger logger = Logger.getLogger(TestNGTestTransformer.class);