remove unused test
This commit is contained in:
@@ -27,7 +27,6 @@ public class TransactionCommandsTest extends JedisCommandTestBase {
|
|||||||
|
|
||||||
Jedis nj;
|
Jedis nj;
|
||||||
|
|
||||||
@Override
|
|
||||||
@Before
|
@Before
|
||||||
public void setUp() throws Exception {
|
public void setUp() throws Exception {
|
||||||
super.setUp();
|
super.setUp();
|
||||||
@@ -219,15 +218,4 @@ public class TransactionCommandsTest extends JedisCommandTestBase {
|
|||||||
string.get();
|
string.get();
|
||||||
t.exec();
|
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());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user