aboutsummaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorAndy Clement <aclement@gopivotal.com>2014-10-21 13:19:19 -0700
committerAndy Clement <aclement@gopivotal.com>2014-10-21 13:19:19 -0700
commit0df90e175b316d5a8e6189c2d89725cd8afd7bd3 (patch)
tree0e6a7c8b5d41ed4d0e44eb2f4a61a08653ee02a2 /runtime
parentdddd1236cd21982a07f887ff7fa5d484ebc3b86c (diff)
downloadaspectj-0df90e175b316d5a8e6189c2d89725cd8afd7bd3.tar.gz
aspectj-0df90e175b316d5a8e6189c2d89725cd8afd7bd3.zip
Support for @RequiredTypes and abstract aspects
Diffstat (limited to 'runtime')
-rw-r--r--runtime/testsrc/org/aspectj/runtime/reflect/RuntimePerformanceTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/testsrc/org/aspectj/runtime/reflect/RuntimePerformanceTest.java b/runtime/testsrc/org/aspectj/runtime/reflect/RuntimePerformanceTest.java
index ac487539a..25959aebc 100644
--- a/runtime/testsrc/org/aspectj/runtime/reflect/RuntimePerformanceTest.java
+++ b/runtime/testsrc/org/aspectj/runtime/reflect/RuntimePerformanceTest.java
@@ -78,7 +78,7 @@ public class RuntimePerformanceTest extends TestCase {
long ratio = (EXPECTED_RATIO*noCache/cache);
System.out.println("ratio=" + ratio);
- assertTrue("Using cache should be " + EXPECTED_RATIO + " times faster: " + ratio,(ratio > EXPECTED_RATIO));
+ assertTrue("Using cache should be " + EXPECTED_RATIO + " times faster: " + ratio,(ratio >= EXPECTED_RATIO));
}
private long invokeSignatureToString (Signature sig, long iterations) {