Copilot commented on code in PR #20465: URL: https://github.com/apache/kafka/pull/20465#discussion_r2329360565
########## streams/integration-tests/src/test/java/org/apache/kafka/streams/integration/SmokeTestDriverIntegrationTest.java: ########## @@ -110,15 +110,12 @@ SmokeTestDriver.VerificationResult result() { // (1) 10 min timeout, (2) 30 tries of polling without getting any data @ParameterizedTest @CsvSource({ - "false, false, true", - "true, false, true", - "false, false, false", - "true, false, false", - "true, true, true", - "true, true, false" + "false, true", + "false, false", + "true, true", + "true, false" }) public void shouldWorkWithRebalance( - final boolean stateUpdaterEnabled, final boolean processingThreadsEnabled, final boolean streamsProtocolEnabled ) throws InterruptedException { Review Comment: The method signature and parameter documentation should be updated to reflect the removal of the `stateUpdaterEnabled` parameter. Consider updating any existing JavaDoc comments to accurately describe the current test parameters. -- 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