Skip to content

Commit 1450737

Browse files
committed
gnarf
1 parent 4ff9957 commit 1450737

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

soot-infoflow/test/soot/jimple/infoflow/test/junit/JUnitTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,8 @@ protected void onlyForwards(IInfoflow infoflow, String message) {
198198
*
199199
* @return The directory in which the FlowDroid main project is located
200200
*/
201-
public static File getInfoflowRoot() {
202-
File testRoot = new File(".");
201+
public static File getInfoflowRoot() throws IOException {
202+
File testRoot = new File(".").getCanonicalFile();
203203

204204
if (!new File(testRoot, "src").exists()) {
205205
// Try a subfolder

0 commit comments

Comments
 (0)