diff options
author | Andy Clement <aclement@pivotal.io> | 2019-02-19 12:07:48 -0800 |
---|---|---|
committer | Andy Clement <aclement@pivotal.io> | 2019-02-19 12:07:48 -0800 |
commit | b858c788515524c2224165fc615638b75266954f (patch) | |
tree | b82fb4e2d729e23909ac4375a590103851558f67 /testing/src | |
parent | 35c4a7d9d8418e100fe9338b7191a05a9f073bdc (diff) | |
download | aspectj-b858c788515524c2224165fc615638b75266954f.tar.gz aspectj-b858c788515524c2224165fc615638b75266954f.zip |
improved test harnesses for working with runtime
Diffstat (limited to 'testing/src')
-rw-r--r-- | testing/src/test/java/org/aspectj/testing/CompileSpec.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testing/src/test/java/org/aspectj/testing/CompileSpec.java b/testing/src/test/java/org/aspectj/testing/CompileSpec.java index 22570e3d1..97cba2bc5 100644 --- a/testing/src/test/java/org/aspectj/testing/CompileSpec.java +++ b/testing/src/test/java/org/aspectj/testing/CompileSpec.java @@ -303,6 +303,7 @@ public class CompileSpec implements ITestStep { } private String rewrite(String path) { + path = path.replace("$runtimemodule", TestUtil.aspectjrtPath(true).toString()); path = path.replace("$runtime", TestUtil.aspectjrtPath().toString()); return path; } |