--- jsr166/src/test/tck/ReentrantReadWriteLockTest.java 2009/11/30 08:31:09 1.39 +++ jsr166/src/test/tck/ReentrantReadWriteLockTest.java 2009/12/01 06:03:49 1.40 @@ -899,7 +899,7 @@ public class ReentrantReadWriteLockTest Thread t = new Thread(new CheckedInterruptedRunnable() { public void realRun() throws InterruptedException { lock.writeLock().lock(); - c.awaitNanos(LONG_DELAY_MS * 1000L * 1000L); + c.awaitNanos(MILLISECONDS.toNanos(LONG_DELAY_MS)); lock.writeLock().unlock(); }});