We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46a025a commit def2770Copy full SHA for def2770
src/main/java/io/zonky/test/db/postgres/embedded/EmbeddedPostgres.java
@@ -289,8 +289,7 @@ private List<String> createLocaleOptions()
289
{
290
final List<String> localeOptions = new ArrayList<>();
291
for (final Entry<String, String> config : localeConfig.entrySet()) {
292
- localeOptions.add("--" + config.getKey());
293
- localeOptions.add(config.getValue());
+ localeOptions.add(String.format("--%s=%s", config.getKey(), config.getValue()));
294
}
295
return localeOptions;
296
0 commit comments