Skip to content

Commit

Permalink
Flakey test
Browse files Browse the repository at this point in the history
  • Loading branch information
jduo committed Jun 29, 2024
1 parent fe1493a commit 3cd1dab
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 @@ -8028,7 +8028,7 @@ public void hscan(BaseClient client) {
key1, initialCursor, HScanOptions.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-hash key
Expand Down

0 comments on commit 3cd1dab

Please sign in to comment.