We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 339b93b commit c370decCopy full SHA for c370dec
test/jdk/java/security/SignedJar/spi-calendar-provider/TestSPISigned.java
@@ -33,6 +33,7 @@
33
import java.nio.file.Paths;
34
import java.nio.file.Path;
35
import java.nio.file.Files;
36
+import java.io.File;
37
import static java.util.Calendar.WEDNESDAY;
38
39
/*
@@ -95,7 +96,7 @@ public static void main(String[] args) throws Throwable {
95
96
testRun.add("-Djava.locale.providers=SPI");
97
testRun.add("-cp");
98
String classPath = System.getProperty("java.class.path");
- classPath = classPath + ":" + SIGNED_JAR.toAbsolutePath().toString();
99
+ classPath = classPath + File.pathSeparator + SIGNED_JAR.toAbsolutePath().toString();
100
testRun.add(classPath);
101
testRun.add(TestSPISigned.class.getSimpleName());
102
testRun.add("run-test");
0 commit comments