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 39f8465131..f2ebb4c597 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.net.UnknownHostException; import java.util.Arrays; +import org.junit.Ignore; import org.junit.Test; import redis.clients.jedis.BinaryJedisPubSub; @@ -503,7 +504,7 @@ public void onPSubscribe(String pattern, int subscribedChannels) { } } - @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 void onPSubscribe(String pattern, int subscribedChannels) { }; pubsub.unsubscribe(); } -} \ No newline at end of file +}