summaryrefslogtreecommitdiffstats
path: root/test/junit
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-04-10 01:21:45 +0200
committerSven Gothel <[email protected]>2010-04-10 01:21:45 +0200
commit4aa39b922872a8dac0d49505536a7b058ef40f7a (patch)
tree47da5b4be0e51b13e097787c65c5b40434b98f3f /test/junit
parent5d2fd3da2541e9ddfdad6cdbba9d251fd305bfd7 (diff)
parent1968a05de1e1c734865b045b257714abd52c7e56 (diff)
Merge branch 'master' of github.com:mbien/gluegen
Diffstat (limited to 'test/junit')
-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);
}