Skip to content

Commit 92edbf7

Browse files
committed
fix deprecated API
1 parent 1db1ae7 commit 92edbf7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

streams/test-utils/src/test/java/org/apache/kafka/streams/TestTopicsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public void setup() {
7676
final Properties properties = new Properties();
7777
properties.put(StreamsConfig.DEFAULT_KEY_SERDE_CLASS_CONFIG, Serdes.ByteArraySerde.class);
7878
properties.put(StreamsConfig.DEFAULT_VALUE_SERDE_CLASS_CONFIG, Serdes.ByteArraySerde.class);
79-
testDriver = new TopologyTestDriver(builder.build(), properties);
79+
testDriver = new TopologyTestDriverBuilder(builder.build()).withConfig(properties).build();
8080
}
8181

8282
@AfterEach

0 commit comments

Comments
 (0)