diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/junit/com/jogamp/common/util/IntIntHashMapTest.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/junit/com/jogamp/common/util/IntIntHashMapTest.java b/test/junit/com/jogamp/common/util/IntIntHashMapTest.java index 6ccf0e3..18eeef6 100644 --- a/test/junit/com/jogamp/common/util/IntIntHashMapTest.java +++ b/test/junit/com/jogamp/common/util/IntIntHashMapTest.java @@ -99,7 +99,7 @@ public class IntIntHashMapTest { long mapTime = (currentTimeMillis() - time); out.println(" map: " + mapTime+"ms"); - assertTrue(intmapTime < mapTime); + assertTrue(intmapTime <= mapTime); System.out.println(); @@ -115,7 +115,7 @@ public class IntIntHashMapTest { for (int i = 0; i < iterations; i++) { map.get(rndValues[i]); } - assertTrue(intmapTime < mapTime); + assertTrue(intmapTime <= mapTime); out.println(); @@ -132,7 +132,7 @@ public class IntIntHashMapTest { map.remove(rndValues[i]); } - assertTrue(intmapTime < mapTime); + assertTrue(intmapTime <= mapTime); } |