Community
Participate
Working Groups
EUnitRunner and some of the EOL / ETL acceptance tests attempt to load files relative to a Java class using code like: String path = clazz.getResource(filename).getFile() File file = new File(path); This fails when the target file resides in a directory containing special characters (e.g. spaces), because URLs are encoded by default (e.g. "Documents and Settings" becomes "Documents%20and%Settings".
I've replaced code like with the following: FileUtil.getFile(filename, clazz); in EUnitRunner, EtlTest and MultilineCommentReader (FileUtil.getFile uses java.net.URLDecoder).
Checked into SVN. Assigning to Dimitris for build integration; thanks!
This was fixed no later than interim build 0.9.0.201104180016.
Fixed in 0.9.1