shekhar-rajak commented on code in PR #12735: URL: https://github.com/apache/kafka/pull/12735#discussion_r993517764
########## connect/runtime/src/test/java/org/apache/kafka/connect/runtime/ErrorHandlingTaskTest.java: ########## @@ -177,16 +180,14 @@ public class ErrorHandlingTaskTest { private ErrorHandlingMetrics errorHandlingMetrics; - private boolean enableTopicCreation; + private boolean enableTopicCreation = false; + private MockitoSession mockitoSession; @ParameterizedTest.Parameters public static Collection<Boolean> parameters() { return Arrays.asList(false, true); } - public ErrorHandlingTaskTest(boolean enableTopicCreation) { Review Comment: I had to remove this, since test class should have zero argument constructor (I got this error message while trying to run the test case class). I have set the enableTopicCreation value as false for now. -- 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