shishkovilja commented on code in PR #11944: URL: https://github.com/apache/ignite/pull/11944#discussion_r2018267037
########## modules/core/src/test/java/org/apache/ignite/internal/processors/continuous/GridEventConsumeSelfTest.java: ########## @@ -1250,7 +1251,7 @@ public void testMultithreadedWithNodeRestart() throws Exception { GridTestUtils.waitForAllFutures(starterFut, stopperFut, nodeRestarterFut, jobRunnerFut); - Collection<UUID> notStopped = F.lose(started, true, stopped); + Collection<UUID> notStopped = started.stream().filter(stopped::contains).collect(Collectors.toList()); Review Comment: Test fails because of reversed logic, filter should be changed: ```suggestion Collection<UUID> notStopped = started.stream().filter(o -> stopped.contains(o)).collect(Collectors.toList()); ``` -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org