Updated .classpath file for java mail version 1.4.1.

This commit is contained in:
Mark Fisher
2008-07-29 23:52:22 +00:00
parent d3ed4a937a
commit 4a808803b9
2 changed files with 3 additions and 2 deletions

View File

@@ -80,7 +80,8 @@ public class AggregatingMessageHandlerTests {
CountDownLatch latch = new CountDownLatch(1);
AggregatorTestTask task = new AggregatorTestTask(aggregator, message, latch);
executor.execute(task);
latch.await(1000, TimeUnit.MILLISECONDS);
latch.await(2000, TimeUnit.MILLISECONDS);
assertEquals("task should have completed within timeout", 0, latch.getCount());
Message<?> reply = replyChannel.receive(0);
assertNull(reply);
Message<?> discardedMessage = discardChannel.receive(1000);