clolov commented on code in PR #14716:
URL: https://github.com/apache/kafka/pull/14716#discussion_r1553287165


##########
streams/src/test/java/org/apache/kafka/streams/processor/internals/StreamTaskTest.java:
##########
@@ -1798,8 +1746,6 @@ public void 
shouldCloseStateManagerEvenDuringFailureOnUncleanTaskClose() {
 
         assertThrows(RuntimeException.class, () -> task.suspend());
         task.closeDirty();
-
-        EasyMock.verify(stateManager);

Review Comment:
   I have moved
   ```
   doNothing().when(stateManager).close();
   ```
   to
   ```
   verify(stateManager).close();
   ```
   in subsequent commits.
   Everything else is related to empty maps or sets, so I have removed the 
stubbings



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