Skip to content

Commit

Permalink
Fix rebase errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jduo committed Jun 28, 2024
1 parent 6b78a89 commit 63eb304
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1207,7 +1207,4 @@ CompletableFuture<String> restore(
* }</pre>
*/
CompletableFuture<Long> sortStore(String key, String destination);
CompletableFuture<Object[]> sscan(String key, long cursor);

CompletableFuture<Object[]> sscan(String key, long cursor, ScanOptions scanOptions);
}
2 changes: 1 addition & 1 deletion java/integTest/src/test/java/glide/SharedCommandTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -7285,7 +7285,7 @@ public void zscan(BaseClient client) {

// Test match pattern
result =
client.zscan(key1, initialCursor, ZScanOptions.builder().matchPattern("*").busild()).get();
client.zscan(key1, initialCursor, ZScanOptions.builder().matchPattern("*").build()).get();
assertTrue(Long.parseLong(result[resultCursorIndex].toString()) >= 0);
assertTrue(ArrayUtils.getLength(result[resultCollectionIndex]) >= defaultCount);

Expand Down

0 comments on commit 63eb304

Please sign in to comment.