aboutsummaryrefslogtreecommitdiffstats
path: root/bridge/testsrc
diff options
context:
space:
mode:
authoracolyer <acolyer>2005-09-26 19:11:55 +0000
committeracolyer <acolyer>2005-09-26 19:11:55 +0000
commit20cafd486b5f5181153fadc4179c2cf313c931a5 (patch)
treed39d479a80e60ce4ddffcede0ceeb8fa3707a0ee /bridge/testsrc
parentcf077b3b71ae47a556e230eb40dfa158abd4d037 (diff)
downloadaspectj-20cafd486b5f5181153fadc4179c2cf313c931a5.tar.gz
aspectj-20cafd486b5f5181153fadc4179c2cf313c931a5.zip
a few more tweaks to fix for pr108123 and pr106500 - better diagnostics and exceptions, plus support for -Xdev:Pinpoint
Diffstat (limited to 'bridge/testsrc')
-rw-r--r--bridge/testsrc/org/aspectj/bridge/context/CompilationAndWeavingContextTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bridge/testsrc/org/aspectj/bridge/context/CompilationAndWeavingContextTest.java b/bridge/testsrc/org/aspectj/bridge/context/CompilationAndWeavingContextTest.java
index 6e8c73e22..825a52b61 100644
--- a/bridge/testsrc/org/aspectj/bridge/context/CompilationAndWeavingContextTest.java
+++ b/bridge/testsrc/org/aspectj/bridge/context/CompilationAndWeavingContextTest.java
@@ -27,7 +27,7 @@ public class CompilationAndWeavingContextTest extends TestCase {
public void testDoubleEntry() {
CompilationAndWeavingContext.enteringPhase(1,"XYZ");
CompilationAndWeavingContext.enteringPhase(2, "ABC");
- assertEquals("when fiddling XYZ\nwhen mucking about with ABC\n",CompilationAndWeavingContext.getCurrentContext());
+ assertEquals("when mucking about with ABC\nwhen fiddling XYZ\n",CompilationAndWeavingContext.getCurrentContext());
}
public void testEntryEntryExit() {