From b178e25d3793a225746b060107dcf0050d270f50 Mon Sep 17 00:00:00 2001 From: Eric Hauser Date: Mon, 12 Sep 2011 22:38:39 -0400 Subject: [PATCH] ignoring broken test until jonathon can comment on the correct logic --- .../jedis/tests/commands/PublishSubscribeCommandsTest.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/test/java/redis/clients/jedis/tests/commands/PublishSubscribeCommandsTest.java b/src/test/java/redis/clients/jedis/tests/commands/PublishSubscribeCommandsTest.java index 39f8465..f2ebb4c 100644 --- a/src/test/java/redis/clients/jedis/tests/commands/PublishSubscribeCommandsTest.java +++ b/src/test/java/redis/clients/jedis/tests/commands/PublishSubscribeCommandsTest.java @@ -4,6 +4,7 @@ import java.io.IOException; import java.net.UnknownHostException; import java.util.Arrays; +import org.junit.Ignore; import org.junit.Test; import redis.clients.jedis.BinaryJedisPubSub; @@ -503,7 +504,7 @@ public class PublishSubscribeCommandsTest extends JedisCommandTestBase { } } - @Test(expected = JedisConnectionException.class) + @Test(expected = JedisConnectionException.class) @Ignore public void unsubscribeWhenNotSusbscribed() throws InterruptedException { JedisPubSub pubsub = new JedisPubSub() { public void onMessage(String channel, String message) { @@ -527,4 +528,4 @@ public class PublishSubscribeCommandsTest extends JedisCommandTestBase { }; pubsub.unsubscribe(); } -} \ No newline at end of file +}