--- jsr166/src/test/tck/ConcurrentSkipListMapTest.java 2014/12/31 19:05:42 1.33 +++ jsr166/src/test/tck/ConcurrentSkipListMapTest.java 2014/12/31 21:45:16 1.34 @@ -1030,7 +1030,7 @@ public class ConcurrentSkipListMapTest e // Add entries till we're back to original size while (map.size() < size) { int key = min + rnd.nextInt(rangeSize); - assertTrue(key >= min && key<= max); + assertTrue(key >= min && key <= max); put(map, key); } } @@ -1055,7 +1055,7 @@ public class ConcurrentSkipListMapTest e // Add entries till we're back to original size while (map.size() < size) { int key = min - 5 + rnd.nextInt(rangeSize + 10); - if (key >= min && key<= max) { + if (key >= min && key <= max) { put(map, key); } else { try {