mjsax commented on code in PR #14477:
URL: https://github.com/apache/kafka/pull/14477#discussion_r1348228440


##########
streams/src/test/java/org/apache/kafka/streams/integration/IQv2StoreIntegrationTest.java:
##########
@@ -816,29 +816,65 @@ private <T> void shouldHandleRangeQueries(final 
Function<T, Integer> extractor)
         shouldHandleRangeQuery(
             Optional.of(1),
             Optional.of(3),
+            true,
             extractor,
-            mkSet(1, 2, 3)
+            Arrays.asList(2, 1, 3)
 
         );
         shouldHandleRangeQuery(
             Optional.of(1),
             Optional.empty(),
+            true,
             extractor,
-            mkSet(1, 2, 3)
+            Arrays.asList(2, 1, 3)
 
         );
         shouldHandleRangeQuery(
             Optional.empty(),
             Optional.of(1),
+            true,
             extractor,
-            mkSet(0, 1)
+            Arrays.asList(0, 1)
 
         );
         shouldHandleRangeQuery(
             Optional.empty(),
             Optional.empty(),
+            true,
             extractor,
-            mkSet(0, 1, 2, 3)
+            Arrays.asList(0, 2, 1, 3)
+

Review Comment:
   Seems the formatting is off here... the empty line should be after the close 
`);`
   
   ```
       Arrays.asList(0, 2, 1, 3)
   );
   
   shouldHandleRangeQuery(
   ```
   
   It's already messy in the existing code -- can you clean it up everywhere?



-- 
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.

To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to