We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a02aa04 commit a68e28bCopy full SHA for a68e28b
platform-tooling-support-tests/src/test/java/platform/tooling/support/tests/StandaloneTests.java
@@ -111,7 +111,7 @@ void testWithJarredTestClasses() {
111
var jar = root.resolve(Helper.createJarPath("junit-platform-console-standalone"));
112
var path = new ArrayList<String>();
113
// path.add("bin"); // "exploded" test classes are found, see also test() above
114
- path.add(Request.WORKSPACE.resolve("standalone/jar/tests.jar").toString());
+ path.add(Request.WORKSPACE.resolve("standalone/jar/tests.jar").toAbsolutePath().toString());
115
path.add(jar.toString());
116
var result = Request.builder() //
117
.setTool(new Java()) //
0 commit comments