--- jsr166/src/test/tck/SynchronousQueueTest.java 2009/11/21 21:00:34 1.16 +++ jsr166/src/test/tck/SynchronousQueueTest.java 2009/11/21 22:00:46 1.17 @@ -198,7 +198,7 @@ public class SynchronousQueueTest extend final SynchronousQueue q = new SynchronousQueue(); Thread t = new Thread(new CheckedInterruptedRunnable() { public void realRun() throws InterruptedException { - threadAssertFalse(q.offer(new Object(), SHORT_DELAY_MS, MILLISECONDS)); + assertFalse(q.offer(new Object(), SHORT_DELAY_MS, MILLISECONDS)); q.offer(new Object(), LONG_DELAY_MS, MILLISECONDS); }});