From 1968a05de1e1c734865b045b257714abd52c7e56 Mon Sep 17 00:00:00 2001 From: Michael Bien Date: Thu, 8 Apr 2010 14:03:44 +0200 Subject: annotated certain token in IntIntHashMap for text substitution. build generates now via text substitution IntLong- and IntObjectHashmap in the pre-build phase. --- test/junit/com/jogamp/common/util/IntIntHashMapTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/junit/com/jogamp') 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); } -- cgit v1.2.3