gortiz commented on code in PR #10528: URL: https://github.com/apache/pinot/pull/10528#discussion_r1209271291
########## pinot-query-planner/src/test/java/org/apache/calcite/rel/rules/PinotSortExchangeCopyRuleTest.java: ########## @@ -92,7 +92,7 @@ public void shouldMatchLimitNoOffsetNoSort() { // Then: ArgumentCaptor<RelNode> sortCopyCapture = ArgumentCaptor.forClass(LogicalSort.class); - Mockito.verify(_call, Mockito.times(1)).transformTo(sortCopyCapture.capture(), Mockito.anyMap()); + Mockito.verify(_call, Mockito.times(1)).transformTo(sortCopyCapture.capture()); Review Comment: @walterddr This test started to fail once I updated the mockito dependency from 3.x to 5.x. It seems to be the only test that fails after the change. I changed the verify and now it is working, but I'm not sure about the implications. -- 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: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org