Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp94831 committed Apr 15, 2024
1 parent ebe1ec0 commit b5dd8ce
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ public void start() {
}
this.properties.put(StreamsConfig.STATE_DIR_CONFIG, this.stateDirectory.toAbsolutePath().toString());
final Topology topology = this.topologyFactory.apply(this.properties);
this.testDriver = new TopologyTestDriver(topology, this.getProperties());
this.testDriver = new TopologyTestDriver(topology, this.createProperties());

this.inputTopics.clear();
this.inputPatterns.clear();
Expand Down Expand Up @@ -451,7 +451,7 @@ public void stop() {
}
}

private Properties getProperties() {
private Properties createProperties() {
final Properties props = new Properties();
props.putAll(this.properties);
return props;
Expand Down

0 comments on commit b5dd8ce

Please sign in to comment.