Skip to content

Commit c40e28e

Browse files
committed
fixed wrong marker for test integration directory
1 parent cc921a6 commit c40e28e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • soot-infoflow-integration/test/soot/jimple/infoflow/integration/test/junit/river

soot-infoflow-integration/test/soot/jimple/infoflow/integration/test/junit/river/BaseJUnitTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ protected SetupApplication initApplication(File apkFile) {
7979
*/
8080
public static File getIntegrationRoot() {
8181
File testRoot = new File(".");
82-
if (!new File(testRoot, "src").exists())
82+
if (!new File(testRoot, "testAPKs").exists())
8383
testRoot = new File(testRoot, "soot-infoflow-integration");
84-
if (!new File(testRoot, "src").exists())
84+
if (!new File(testRoot, "testAPKs").exists())
8585
throw new RuntimeException(String.format("Test root not found in %s", testRoot.getAbsolutePath()));
8686
return testRoot;
8787
}

0 commit comments

Comments
 (0)