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

Comparing jsr166/src/test/tck/DelayQueueTest.java (file contents):
Revision 1.61 by jsr166, Fri Apr 5 19:27:23 2013 UTC vs.
Revision 1.62 by jsr166, Thu May 30 03:28:55 2013 UTC

# Line 651 | Line 651 | public class DelayQueueTest extends JSR1
651              public void realRun() throws InterruptedException {
652                  assertNull(q.poll());
653                  threadsStarted.await();
654 <                assertTrue(null != q.poll(LONG_DELAY_MS, MILLISECONDS));
654 >                assertNotNull(q.poll(LONG_DELAY_MS, MILLISECONDS));
655                  checkEmpty(q);
656              }});
657  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines