--- jsr166/src/test/tck/ConcurrentSkipListSubSetTest.java 2011/05/31 16:16:23 1.20 +++ jsr166/src/test/tck/ConcurrentSkipListSubSetTest.java 2012/02/21 01:54:04 1.22 @@ -32,7 +32,7 @@ public class ConcurrentSkipListSubSetTes } /** - * Create a set of given size containing consecutive + * Creates a set of given size containing consecutive * Integers 0 ... n. */ private NavigableSet populatedSet(int n) { @@ -53,7 +53,7 @@ public class ConcurrentSkipListSubSetTes } /** - * Create set of first 5 ints + * Creates set of first 5 ints. */ private NavigableSet set5() { ConcurrentSkipListSet q = new ConcurrentSkipListSet(); @@ -71,7 +71,7 @@ public class ConcurrentSkipListSubSetTes } /** - * Create set of first 5 negative ints + * Creates set of first 5 negative ints. */ private NavigableSet dset5() { ConcurrentSkipListSet q = new ConcurrentSkipListSet(); @@ -454,7 +454,7 @@ public class ConcurrentSkipListSubSetTes assertTrue(q.contains(it.next())); ++i; } - assertEquals(i, 0); + assertEquals(0, i); } /** @@ -954,7 +954,7 @@ public class ConcurrentSkipListSubSetTes assertTrue(q.contains(it.next())); ++i; } - assertEquals(i, 0); + assertEquals(0, i); } /**