From: Eric Giffon Date: Thu, 2 Mar 2023 09:30:30 +0000 (+0100) Subject: NO-JIRA Fix unit test on windows X-Git-Tag: 10.0.0.68432~181 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=6589780115c3447509f63f8b3d7a21ac3cec474c;p=sonarqube.git NO-JIRA Fix unit test on windows --- diff --git a/server/sonar-main/src/test/java/org/sonar/application/es/EsKeyStoreCliTest.java b/server/sonar-main/src/test/java/org/sonar/application/es/EsKeyStoreCliTest.java index ea0f2507bbc..50cd28ebc32 100644 --- a/server/sonar-main/src/test/java/org/sonar/application/es/EsKeyStoreCliTest.java +++ b/server/sonar-main/src/test/java/org/sonar/application/es/EsKeyStoreCliTest.java @@ -63,12 +63,11 @@ public class EsKeyStoreCliTest { JavaCommand executedCommand = process.getExecutedCommand(); - String expectedHomeLibPath = Paths.get(homeDir.toString(), "lib", "*").toString(); - String expectedHomeKeystorePath = Paths.get(homeDir.toString(), "lib", "cli-launcher", "*").toString(); + String expectedHomeLibPath = Paths.get(homeDir.toString(), "lib") + File.separator + "*"; + String expectedHomeKeystorePath = Paths.get(homeDir.toString(), "lib", "cli-launcher") + File.separator + "*"; assertThat(executedCommand.getClassName()).isEqualTo("org.elasticsearch.launcher.CliToolLauncher"); - assertThat(executedCommand.getClasspath()) - .containsExactly(expectedHomeLibPath, expectedHomeKeystorePath); + assertThat(executedCommand.getClasspath()).containsExactly(expectedHomeLibPath, expectedHomeKeystorePath); assertThat(executedCommand.getParameters()).containsExactly("add", "-x", "-f", "test.property1", "test.property2", "test.property3"); assertThat(executedCommand.getJvmOptions().getAll()).containsExactly( "-Xms4m",