INT-2024 increased the timeout in RedisInboundChannelAdapterTests.testRedisInboundChannelAdapter

This commit is contained in:
Oleg Zhurakousky
2011-08-01 09:01:06 -04:00
parent 413e8a4689
commit 53bfad7aa0

View File

@@ -58,7 +58,7 @@ public class RedisInboundChannelAdapterTests extends RedisAvailableTests{
}
int counter = 0;
for (int i = 0; i < numToTest; i++) {
Message<?> message = channel.receive(1000);
Message<?> message = channel.receive(5000);
assertNotNull(message);
assertTrue(message.getPayload().toString().startsWith("test-"));
counter++;