Skip to content

Commit

Permalink
fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesx-improving committed Jul 4, 2024
1 parent d596b35 commit dea790b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions java/client/src/test/java/glide/api/RedisClientTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -7614,7 +7614,7 @@ public void xautoclaim_with_count_return_success() {

String[] arguments =
concatenateArrays(
new String[] {key, groupName, consumer, "18", start, Long.toString(count)});
new String[] {key, groupName, consumer, "18", start, "COUNT", Long.toString(count)});
Object[] mockResult = new Object[] {start, completedResult, deletedMessageIds};

CompletableFuture<Object[]> testResponse = new CompletableFuture<>();
Expand Down Expand Up @@ -7688,7 +7688,7 @@ public void xautoclaimJustId_with_count_return_success() {

String[] arguments =
concatenateArrays(
new String[] {key, groupName, consumer, "18", start, Long.toString(1234), "JUSTID"});
new String[] {key, groupName, consumer, "18", start, "COUNT", Long.toString(1234), "JUSTID"});
Object[] mockResult = new Object[] {start, completedResult, deletedMessageIds};

CompletableFuture<Object[]> testResponse = new CompletableFuture<>();
Expand Down

0 comments on commit dea790b

Please sign in to comment.