Skip to content

Commit

Permalink
fix ignore that was placed on wrong test
Browse files Browse the repository at this point in the history
  • Loading branch information
ewhauser committed Sep 13, 2011
1 parent a688c61 commit a9ef10b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ public void run() {
t.join();
}

@Test
@Test @Ignore
public void subscribeWithoutConnecting() {
try {
Jedis jedis = new Jedis(hnp.host, hnp.port);
Expand Down Expand Up @@ -504,7 +504,7 @@ public void onPSubscribe(String pattern, int subscribedChannels) {
}
}

@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) {
Expand Down

0 comments on commit a9ef10b

Please sign in to comment.