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 5f75f35 commit d759efeCopy full SHA for d759efe
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/MavenInvokerTest.java
@@ -34,6 +34,8 @@
34
import org.junit.jupiter.api.Disabled;
35
import org.junit.jupiter.api.Order;
36
import org.junit.jupiter.api.Test;
37
+import org.junit.jupiter.api.condition.EnabledOnOs;
38
+import org.junit.jupiter.api.condition.OS;
39
import org.junit.jupiter.api.io.CleanupMode;
40
import org.junit.jupiter.api.io.TempDir;
41
@@ -235,6 +237,7 @@ void jimFs() throws Exception {
235
237
}
236
238
239
@Test
240
+ @EnabledOnOs(OS.WINDOWS)
241
void msysRepoPathIsNormalised(@TempDir Path tmp) throws Exception {
242
243
final Path cwd = tmp.resolve("project");
0 commit comments