dserfe commented on code in PR #11771:
URL: https://github.com/apache/pinot/pull/11771#discussion_r1351607143


##########
pinot-core/src/test/java/org/apache/pinot/core/operator/filter/NotFilterOperatorTest.java:
##########
@@ -35,7 +36,7 @@ public class NotFilterOperatorTest {
   @Test
   public void testNotOperator() {
     int[] docIds1 = new int[]{2, 3, 10, 15, 16, 17, 18, 21, 22, 23, 24, 26, 
28};
-    Set<Integer> expectedResult = new HashSet();
+    Set<Integer> expectedResult = new LinkedHashSet();
     expectedResult.addAll(Arrays.asList(0, 1, 4, 5, 6, 7, 8, 9, 11, 12, 13, 
14, 19, 20, 25, 27, 29));

Review Comment:
   Thanks for the prompt reply! I have changed the patch based on the 
suggestion.



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to