From 3d13f7e95414d347c8d20453f5b8d5ba7e3ca7d9 Mon Sep 17 00:00:00 2001 From: Mark Fisher Date: Wed, 19 Nov 2008 17:09:10 +0000 Subject: [PATCH] Increased test receive timeout value. --- .../config/PollerAnnotationConsumerAdviceChainTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.springframework.integration/src/test/java/org/springframework/integration/config/PollerAnnotationConsumerAdviceChainTests.java b/org.springframework.integration/src/test/java/org/springframework/integration/config/PollerAnnotationConsumerAdviceChainTests.java index 07bb64d11c..e017a048e8 100644 --- a/org.springframework.integration/src/test/java/org/springframework/integration/config/PollerAnnotationConsumerAdviceChainTests.java +++ b/org.springframework.integration/src/test/java/org/springframework/integration/config/PollerAnnotationConsumerAdviceChainTests.java @@ -62,7 +62,7 @@ public class PollerAnnotationConsumerAdviceChainTests { @Test public void testAdviceChain() throws InterruptedException { input.send(new StringMessage("test")); - Message reply = output.receive(1000); + Message reply = output.receive(3000); assertEquals("TEST", reply.getPayload()); latch.await(1, TimeUnit.SECONDS); assertEquals(0, latch.getCount());