ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/SynchronousQueueTest.java
(Generate patch)

Comparing jsr166/src/test/tck/SynchronousQueueTest.java (file contents):
Revision 1.16 by jsr166, Sat Nov 21 21:00:34 2009 UTC vs.
Revision 1.17 by jsr166, Sat Nov 21 22:00:46 2009 UTC

# Line 198 | Line 198 | public class SynchronousQueueTest extend
198          final SynchronousQueue q = new SynchronousQueue();
199          Thread t = new Thread(new CheckedInterruptedRunnable() {
200              public void realRun() throws InterruptedException {
201 <                threadAssertFalse(q.offer(new Object(), SHORT_DELAY_MS, MILLISECONDS));
201 >                assertFalse(q.offer(new Object(), SHORT_DELAY_MS, MILLISECONDS));
202                  q.offer(new Object(), LONG_DELAY_MS, MILLISECONDS);
203              }});
204  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines