diff options
author | aclement <aclement> | 2010-07-16 20:24:22 +0000 |
---|---|---|
committer | aclement <aclement> | 2010-07-16 20:24:22 +0000 |
commit | 6eda3fda2d76231499506416fa279e99dc389bd3 (patch) | |
tree | 6276f61fef8bdc87216969c47ef71f595dac8dfc /tests | |
parent | 6342de47beb26b21339d2ad92641fd67a6e004cd (diff) | |
download | aspectj-6eda3fda2d76231499506416fa279e99dc389bd3.tar.gz aspectj-6eda3fda2d76231499506416fa279e99dc389bd3.zip |
correct assertion
Diffstat (limited to 'tests')
-rw-r--r-- | tests/src/org/aspectj/systemtest/incremental/tools/IncrementalCompilationTests.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/org/aspectj/systemtest/incremental/tools/IncrementalCompilationTests.java b/tests/src/org/aspectj/systemtest/incremental/tools/IncrementalCompilationTests.java index 60d446039..a762bab06 100644 --- a/tests/src/org/aspectj/systemtest/incremental/tools/IncrementalCompilationTests.java +++ b/tests/src/org/aspectj/systemtest/incremental/tools/IncrementalCompilationTests.java @@ -221,7 +221,7 @@ public class IncrementalCompilationTests extends AbstractMultiProjectIncremental configureNonStandardCompileOptions(p, "-Xset:minimalModel=true"); build(p); checkWasFullBuild(); - printModel(p); + // printModel(p); // Here is the model without deletion. // PR278496_2 [build configuration file] hid:=PR278496_2 // [package] hid:=PR278496_2< @@ -238,7 +238,7 @@ public class IncrementalCompilationTests extends AbstractMultiProjectIncremental AspectJElementHierarchy model = (AspectJElementHierarchy) getModelFor(p).getHierarchy(); // Node for "Code.java" should be there since it is the target of a relationship - IProgramElement ipe = model.findElementForHandleOrCreate("=PR278496_1<{Code.java",false); + IProgramElement ipe = model.findElementForHandleOrCreate("=PR278496_2<{Code.java",false); Assert.assertNotNull(ipe); } } |