jhutchison commented on a change in pull request #5954: URL: https://github.com/apache/geode/pull/5954#discussion_r583728590
########## File path: geode-redis/src/integrationTest/java/org/apache/geode/redis/internal/executor/hash/AbstractHScanIntegrationTest.java ########## @@ -219,13 +298,13 @@ public void givenCount_returnsAllEntriesWithoutDuplicates() { cursor = result.getCursor(); } while (!result.isCompleteIteration()); - assertThat(allEntries).hasSize(3); - assertThat(new HashSet<>(allEntries)).isEqualTo(entryMap.entrySet()); + assertThat(allEntries.size()).isCloseTo(3, Offset.offset(1)); Review comment: see comment at the top of the test - "// note: As per redis docs, count parameter is not guaranteed to be honored." so it's weird one to test... ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org