Increased receive timeout due to timing issues on build server.

This commit is contained in:
Mark Fisher
2007-12-28 19:03:38 +00:00
parent 948e0f7ac7
commit bd749cc04f

View File

@@ -62,7 +62,7 @@ public class MessageBusTests {
bus.registerChannel("sourceChannel", sourceChannel);
bus.registerChannel("targetChannel", targetChannel);
bus.start();
Message<?> result = targetChannel.receive(10);
Message<?> result = targetChannel.receive(100);
assertNull(result);
bus.stop();
}