Skip to content

Commit

Permalink
Fix: wrong list commands test case name (#1801)
Browse files Browse the repository at this point in the history
  • Loading branch information
tramchamploo authored and sazzad16 committed Jun 3, 2018
1 parent f72c86f commit 44d68f1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ public void ltrim() {
}

@Test
public void lindex() {
public void lset() {
jedis.lpush("foo", "1");
jedis.lpush("foo", "2");
jedis.lpush("foo", "3");
Expand Down Expand Up @@ -226,7 +226,7 @@ public void lindex() {
}

@Test
public void lset() {
public void lindex() {
jedis.lpush("foo", "1");
jedis.lpush("foo", "2");
jedis.lpush("foo", "3");
Expand Down

0 comments on commit 44d68f1

Please sign in to comment.