Skip to content

Commit

Permalink
remove unused test
Browse files Browse the repository at this point in the history
  • Loading branch information
xetorthio committed May 30, 2011
1 parent 00712f0 commit 525710a
Showing 1 changed file with 0 additions and 12 deletions.
Expand Up @@ -27,7 +27,6 @@ public class TransactionCommandsTest extends JedisCommandTestBase {

Jedis nj;

@Override
@Before
public void setUp() throws Exception {
super.setUp();
Expand Down Expand Up @@ -219,15 +218,4 @@ public void transactionResponseWithinPipeline() {
string.get();
t.exec();
}

@Test
public void lala() {
Transaction multi = jedis.multi();
Response<Long> publish = multi.publish("foo", "bar");
Response<Long> bpublish = multi.publish("foo".getBytes(), "bar"
.getBytes());
multi.exec();
assertEquals(0, publish.get().longValue());
assertEquals(0, bpublish.get().longValue());
}
}

0 comments on commit 525710a

Please sign in to comment.