Skip to content

Commit

Permalink
small refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
dzmipt committed Jun 7, 2024
1 parent f35a4e8 commit fb0b562
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/studio/kdb/ConfigTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ private Config getConfig(Properties properties) throws IOException {
private Config copyConfig(Config config, Consumer<Properties> propsModification) throws IOException {
config.saveToDisk();
Properties p = new Properties();
p.load(new FileInputStream(config.getFilename()));
p.load(new FileInputStream(tmpFile));
propsModification.accept(p);
return getConfig(p);
}
Expand Down

0 comments on commit fb0b562

Please sign in to comment.