Skip to content

Commit def2770

Browse files
committed
fix format of local parameters
1 parent 46a025a commit def2770

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/io/zonky/test/db/postgres/embedded/EmbeddedPostgres.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,8 +289,7 @@ private List<String> createLocaleOptions()
289289
{
290290
final List<String> localeOptions = new ArrayList<>();
291291
for (final Entry<String, String> config : localeConfig.entrySet()) {
292-
localeOptions.add("--" + config.getKey());
293-
localeOptions.add(config.getValue());
292+
localeOptions.add(String.format("--%s=%s", config.getKey(), config.getValue()));
294293
}
295294
return localeOptions;
296295
}

0 commit comments

Comments
 (0)