diff --git a/streams/integration-tests/src/test/java/org/apache/kafka/streams/integration/PauseResumeIntegrationTest.java b/streams/integration-tests/src/test/java/org/apache/kafka/streams/integration/PauseResumeIntegrationTest.java index 29f5276cfb146..e0f080f885581 100644 --- a/streams/integration-tests/src/test/java/org/apache/kafka/streams/integration/PauseResumeIntegrationTest.java +++ b/streams/integration-tests/src/test/java/org/apache/kafka/streams/integration/PauseResumeIntegrationTest.java @@ -43,9 +43,8 @@ import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Tag; +import org.junit.jupiter.api.Test; import org.junit.jupiter.api.TestInfo; -import org.junit.jupiter.params.ParameterizedTest; -import org.junit.jupiter.params.provider.ValueSource; import java.time.Duration; import java.util.ArrayList; @@ -122,7 +121,7 @@ public void createTopics(final TestInfo testInfo) throws InterruptedException { appId = safeUniqueTestName(testInfo); } - private Properties props(final boolean stateUpdaterEnabled) { + private Properties props() { final Properties properties = new Properties(); properties.put(StreamsConfig.APPLICATION_ID_CONFIG, appId); properties.put(StreamsConfig.BOOTSTRAP_SERVERS_CONFIG, CLUSTER.bootstrapServers()); @@ -134,7 +133,6 @@ private Properties props(final boolean stateUpdaterEnabled) { properties.put(ConsumerConfig.AUTO_OFFSET_RESET_CONFIG, "earliest"); properties.put(ConsumerConfig.HEARTBEAT_INTERVAL_MS_CONFIG, 100); properties.put(ConsumerConfig.SESSION_TIMEOUT_MS_CONFIG, 1000); - properties.put(StreamsConfig.InternalConfig.STATE_UPDATER_ENABLED, stateUpdaterEnabled); return properties; } @@ -151,10 +149,9 @@ private static void produceToInputTopics(final String topic, final Collection