--- jsr166/src/test/tck/ForkJoinPoolTest.java 2010/01/05 02:08:37 1.17 +++ jsr166/src/test/tck/ForkJoinPoolTest.java 2010/02/22 11:25:16 1.18 @@ -235,7 +235,7 @@ public class ForkJoinPoolTest extends JS ForkJoinPool p = null; try { p = new ForkJoinPool(1); - assertTrue(p.getPoolSize() == 0); + assertTrue(p.getActiveThreadCount() == 0); Future future = p.submit(new StringTask()); assertTrue(p.getPoolSize() == 1);