summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2010-04-08 14:03:44 +0200
committerMichael Bien <[email protected]>2010-04-08 14:03:44 +0200
commit1968a05de1e1c734865b045b257714abd52c7e56 (patch)
treef91dffb049da1fb081c0bdb50256e42f62bf994b /test
parent31504e67e5f38d07d442ee02aef456de71a2fa90 (diff)
annotated certain token in IntIntHashMap for text substitution.
build generates now via text substitution IntLong- and IntObjectHashmap in the pre-build phase.
Diffstat (limited to 'test')
-rw-r--r--test/junit/com/jogamp/common/util/IntIntHashMapTest.java6
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);
}