DurableConsumerTest - giving it more time to pass on slow machines

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@905235 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Bosanac Dejan 2010-02-01 10:14:15 +00:00
parent 7b700ee7a2
commit a3607423c4

View File

@ -283,7 +283,7 @@ public class DurableConsumerTest extends CombinationTestSupport{
LOG.info("receivedCount: " + receivedCount.get());
return receivedCount.get() == numMessages;
}
}, 60 * 1000);
}, 120 * 1000);
assertEquals("got required some messages", numMessages, receivedCount.get());
assertTrue("no exceptions, but: " + exceptions, exceptions.isEmpty());
}