From b26ad561ab1db820a2f794e56512ef2c960d656f Mon Sep 17 00:00:00 2001 From: Oleg Zhurakousky Date: Mon, 1 Aug 2011 09:33:55 -0400 Subject: [PATCH] INT-2024 polishing test, made redis channel unique for this test --- .../redis/inbound/RedisInboundChannelAdapterTests.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-integration-redis/src/test/java/org/springframework/integration/redis/inbound/RedisInboundChannelAdapterTests.java b/spring-integration-redis/src/test/java/org/springframework/integration/redis/inbound/RedisInboundChannelAdapterTests.java index fd2456e7b4..22987ee689 100644 --- a/spring-integration-redis/src/test/java/org/springframework/integration/redis/inbound/RedisInboundChannelAdapterTests.java +++ b/spring-integration-redis/src/test/java/org/springframework/integration/redis/inbound/RedisInboundChannelAdapterTests.java @@ -38,7 +38,7 @@ public class RedisInboundChannelAdapterTests extends RedisAvailableTests{ @RedisAvailable public void testRedisInboundChannelAdapter() throws Exception { int numToTest = 100; - String redisChannelName = "si.test.channel"; + String redisChannelName = "testRedisInboundChannelAdapterChannel"; QueueChannel channel = new QueueChannel(); JedisConnectionFactory connectionFactory = new JedisConnectionFactory(); @@ -46,7 +46,7 @@ public class RedisInboundChannelAdapterTests extends RedisAvailableTests{ connectionFactory.afterPropertiesSet(); RedisInboundChannelAdapter adapter = new RedisInboundChannelAdapter(connectionFactory); - adapter.setTopics("si.test.channel"); + adapter.setTopics("testRedisInboundChannelAdapterChannel"); adapter.setOutputChannel(channel); adapter.afterPropertiesSet(); adapter.start();