We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8b5ee2 commit f949f66Copy full SHA for f949f66
1 file changed
src/test/java/com/wolfssl/provider/jce/test/WolfSSLKeyStoreTest.java
@@ -2547,10 +2547,10 @@ public void testKekCacheEnabledImprovePerformance() throws Exception {
2547
assertNotNull(key2);
2548
assertEquals(key1, key2);
2549
2550
- /* Cache hit should be significantly faster */
+ /* Cache hit should be faster. */
2551
assertTrue("Cache hit should be faster: " +
2552
"first=" + first + "ms, second=" + second + "ms",
2553
- first > 0 && (first > 50 ? second < first / 5 : true));
+ first > 0 && (first > 50 ? second < first : true));
2554
2555
} finally {
2556
/* Restore original properties */
0 commit comments