--- jsr166/src/test/tck/ConcurrentSkipListSubMapTest.java 2005/05/28 14:02:00 1.3 +++ jsr166/src/test/tck/ConcurrentSkipListSubMapTest.java 2006/04/19 15:10:54 1.4 @@ -32,13 +32,13 @@ public class ConcurrentSkipListSubMapTes map.put(seven, "F"); assertFalse(map.isEmpty()); assertEquals(7, map.size()); - return map.navigableSubMap(one, seven); + return map.navigableSubMap(one, true, seven, false); } private static ConcurrentNavigableMap map0() { ConcurrentSkipListMap map = new ConcurrentSkipListMap(); assertTrue(map.isEmpty()); - return map.navigableTailMap(one); + return map.navigableTailMap(one, true); } /**