Skip to content

Commit

Permalink
Update java/integTest/src/test/java/glide/SharedCommandTests.java
Browse files Browse the repository at this point in the history
Co-authored-by: Guian Gumpac <[email protected]>
  • Loading branch information
jduo and GumpacG committed Jun 29, 2024
1 parent 5c3c74a commit db453b2
Showing 1 changed file with 1 addition and 1 deletion.
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 @@ -8010,7 +8010,7 @@ public void zscan(BaseClient client) {
key1, initialCursor, ZScanOptions.builder().matchPattern("1*").count(20L).build())
.get();
assertTrue(Long.parseLong(result[resultCursorIndex].toString()) >= 0);
assertTrue(ArrayUtils.getLength(result[resultCollectionIndex]) > 0);
assertTrue(ArrayUtils.getLength(result[resultCollectionIndex]) >= 0);

// Exceptions
// Non-set key
Expand Down

0 comments on commit db453b2

Please sign in to comment.