diff options
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/testsrc/org/aspectj/runtime/reflect/RuntimePerformanceTest.java | 2 |
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) { |