File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/test/java/redis/clients/jedis/tests Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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" );
You can’t perform that action at this time.
0 commit comments