Skip to content

Commit 4df1e10

Browse files
authored
Renaming test methods
1 parent 8f45f4d commit 4df1e10

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/test/java/redis/clients/jedis/tests/PipeliningTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -352,27 +352,27 @@ public void multiUnwatch() {
352352
}
353353

354354
@Test(expected = IllegalStateException.class)
355-
public void pipelineExecShoudThrowBatchExceptionWhenNotInMulti() {
355+
public void pipelineExecWhenNotInMulti() {
356356
Pipeline pipeline = jedis.pipelined();
357357
pipeline.exec();
358358
}
359359

360360
@Test(expected = IllegalStateException.class)
361-
public void pipelineDiscardShoudThrowBatchExceptionWhenNotInMulti() {
361+
public void pipelineDiscardWhenNotInMulti() {
362362
Pipeline pipeline = jedis.pipelined();
363363
pipeline.discard();
364364
}
365365

366366
@Test(expected = IllegalStateException.class)
367-
public void pipelineMultiShoudThrowBatchExceptionWhenAlreadyInMulti() {
367+
public void pipelineMultiWhenAlreadyInMulti() {
368368
Pipeline pipeline = jedis.pipelined();
369369
pipeline.multi();
370370
pipeline.set("foo", "3");
371371
pipeline.multi();
372372
}
373373

374374
@Test(expected = IllegalStateException.class)
375-
public void testJedisThowExceptionWhenInPipeline() {
375+
public void testJedisThrowExceptionWhenInPipeline() {
376376
Pipeline pipeline = jedis.pipelined();
377377
pipeline.set("foo", "3");
378378
jedis.get("somekey");

0 commit comments

Comments
 (0)