From faacacd6c0a62d7e1113fd7a693ea7f774631fa1 Mon Sep 17 00:00:00 2001 From: Mark DePristo Date: Sun, 26 Aug 2012 08:42:58 -0400 Subject: [PATCH] Increase runtime of nano scheduler tests to 1 min --- .../sting/utils/nanoScheduler/NanoSchedulerUnitTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/java/test/org/broadinstitute/sting/utils/nanoScheduler/NanoSchedulerUnitTest.java b/public/java/test/org/broadinstitute/sting/utils/nanoScheduler/NanoSchedulerUnitTest.java index f2a34c46d..cf97d3e73 100644 --- a/public/java/test/org/broadinstitute/sting/utils/nanoScheduler/NanoSchedulerUnitTest.java +++ b/public/java/test/org/broadinstitute/sting/utils/nanoScheduler/NanoSchedulerUnitTest.java @@ -16,7 +16,7 @@ import java.util.*; * To change this template use File | Settings | File Templates. */ public class NanoSchedulerUnitTest extends BaseTest { - public static final int NANO_SCHEDULE_MAX_RUNTIME = 10000; + public static final int NANO_SCHEDULE_MAX_RUNTIME = 60000; private class Map2x implements MapFunction { @Override public Integer apply(Integer input) { return input * 2; }