You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix tests failing failing when the test directory contains spaces (#44)
`new File( markerResource.getPath() )` does not work when `markerResource`
contains spaces or other characters that are URL encoded.
The `File` constructor that takes URI as argument, takes care of those
cases.
Copy file name to clipboardExpand all lines: plexus-compiler-api/src/test/java/org/codehaus/plexus/compiler/util/scan/AbstractSourceInclusionScannerTest.java
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,7 @@
19
19
importjava.io.File;
20
20
importjava.io.FileWriter;
21
21
importjava.io.IOException;
22
+
importjava.net.URISyntaxException;
22
23
importjava.net.URL;
23
24
importjava.util.Set;
24
25
@@ -71,6 +72,7 @@ public void testGetIncludedSources()
0 commit comments