From a9ef10bb00404164e5c348389a14e30f3eaea1a0 Mon Sep 17 00:00:00 2001 From: Eric Hauser Date: Mon, 12 Sep 2011 22:48:58 -0400 Subject: [PATCH] fix ignore that was placed on wrong test --- .../jedis/tests/commands/PublishSubscribeCommandsTest.java | 4 ++-- 1 file changed, 2 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 f2ebb4c..c7a94f4 100644 --- a/src/test/java/redis/clients/jedis/tests/commands/PublishSubscribeCommandsTest.java +++ b/src/test/java/redis/clients/jedis/tests/commands/PublishSubscribeCommandsTest.java @@ -472,7 +472,7 @@ public class PublishSubscribeCommandsTest extends JedisCommandTestBase { t.join(); } - @Test + @Test @Ignore public void subscribeWithoutConnecting() { try { Jedis jedis = new Jedis(hnp.host, hnp.port); @@ -504,7 +504,7 @@ public class PublishSubscribeCommandsTest extends JedisCommandTestBase { } } - @Test(expected = JedisConnectionException.class) @Ignore + @Test(expected = JedisConnectionException.class) public void unsubscribeWhenNotSusbscribed() throws InterruptedException { JedisPubSub pubsub = new JedisPubSub() { public void onMessage(String channel, String message) {