fix ignore that was placed on wrong test

This commit is contained in:
Eric Hauser
2011-09-12 22:48:58 -04:00
parent a688c610ae
commit a9ef10bb00

View File

@@ -472,7 +472,7 @@ public class PublishSubscribeCommandsTest extends JedisCommandTestBase {
t.join(); t.join();
} }
@Test @Test @Ignore
public void subscribeWithoutConnecting() { public void subscribeWithoutConnecting() {
try { try {
Jedis jedis = new Jedis(hnp.host, hnp.port); 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 { public void unsubscribeWhenNotSusbscribed() throws InterruptedException {
JedisPubSub pubsub = new JedisPubSub() { JedisPubSub pubsub = new JedisPubSub() {
public void onMessage(String channel, String message) { public void onMessage(String channel, String message) {