Increased test timeout value.

This commit is contained in:
Mark Fisher
2008-11-24 21:42:52 +00:00
parent 79fdb179fc
commit 024c734333

View File

@@ -99,7 +99,7 @@ public class ApplicationContextMessageBusTests {
PollableChannel sourceChannel = (PollableChannel) context.getBean("sourceChannel");
sourceChannel.send(new GenericMessage<String>("test"));
PollableChannel targetChannel = (PollableChannel) context.getBean("targetChannel");
Message<?> result = targetChannel.receive(1000);
Message<?> result = targetChannel.receive(3000);
assertEquals("test", result.getPayload());
}