Description
Windows users report that test org.apache.wicket.util.resource.PathTest#loadFromRootUsingSubpathInFilename fails for them.
The suggested solution is to rework Path#find to:
@Override
public IResourceStream find(final Class<?> clazz, final String pathname)
{
final File file = new File(folder, pathname);
final File pathOnlyFile = new File(pathname);
if (file.exists())
{ return new FileResourceStream(file); }if (pathOnlyFile.exists())
{ return new FileResourceStream(pathOnlyFile); }else
{ return null; }}
but I'm not quite sure in this solution.