diff options
-rw-r--r-- | weaver5/java5-testsrc/org/aspectj/weaver/JoinPointSignatureIteratorTests.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weaver5/java5-testsrc/org/aspectj/weaver/JoinPointSignatureIteratorTests.java b/weaver5/java5-testsrc/org/aspectj/weaver/JoinPointSignatureIteratorTests.java index bdc4abe0a..9b7aa00d6 100644 --- a/weaver5/java5-testsrc/org/aspectj/weaver/JoinPointSignatureIteratorTests.java +++ b/weaver5/java5-testsrc/org/aspectj/weaver/JoinPointSignatureIteratorTests.java @@ -46,7 +46,7 @@ public class JoinPointSignatureIteratorTests extends TestCase { // and one is not. The aim of the test here is that the join point signatures generated for both // should be the same because of the use of a proxy. - List l = proxy.getMethodsWithoutIterator(false, false); + List l = proxy.getMethodsWithoutIterator(false, false, false); for (Object object : l) { ResolvedMember rm = (ResolvedMember) object; if (expectedResults.containsKey(rm.toString())) { |