Increase test timeout to prevent failing on slow machines (#3224)

constantly timing out on one of slow build machines, increasing the
timeout fixed it.

Running io.druid.granularity.QueryGranularityTest
Tests run: 33, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 11.776
sec - in io.druid.granularity.QueryGranularityTest
This commit is contained in:
Nishant 2016-07-18 07:14:48 +05:30 committed by Fangjin Yang
parent 90f5d8cd17
commit 7995818220
1 changed files with 1 additions and 1 deletions

View File

@ -749,7 +749,7 @@ public class QueryGranularityTest
Assert.assertFalse("expectedIter not exhausted!?", expectedIter.hasNext());
}
@Test(timeout = 10_000L)
@Test(timeout = 60_000L)
public void testDeadLock() throws Exception
{
final URL[] urls = ((URLClassLoader)QueryGranularity.class.getClassLoader()).getURLs();