Skip to content

Commit d3678b9

Browse files
committed
fix incorrect test setup
1 parent c24dcc3 commit d3678b9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

streams/integration-tests/src/test/java/org/apache/kafka/streams/integration/TimestampedWindowStoreWithHeadersTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ public void shouldSetChangelogTopicProperties() throws Exception {
199199
// verify changelog topic properties
200200
final String changelogTopic = props.getProperty(StreamsConfig.APPLICATION_ID_CONFIG) + "-" + STORE_NAME + "-changelog";
201201
final Properties changelogTopicConfig = CLUSTER.getLogConfig(changelogTopic);
202-
assertEquals("compact", changelogTopicConfig.getProperty("cleanup.policy"));
202+
assertEquals("compact,delete", changelogTopicConfig.getProperty("cleanup.policy"));
203203
}
204204

205205
@Test

0 commit comments

Comments
 (0)