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

Comparing jsr166/src/test/tck/PriorityBlockingQueueTest.java (file contents):
Revision 1.67 by jsr166, Wed Jun 1 16:08:04 2016 UTC vs.
Revision 1.69 by jsr166, Sun Oct 16 20:44:18 2016 UTC

# Line 56 | Line 56 | public class PriorityBlockingQueueTest e
56  
57      /**
58       * Returns a new queue of given size containing consecutive
59 <     * Integers 0 ... n.
59 >     * Integers 0 ... n - 1.
60       */
61      private PriorityBlockingQueue<Integer> populatedQueue(int n) {
62          PriorityBlockingQueue<Integer> q =
# Line 69 | Line 69 | public class PriorityBlockingQueueTest e
69          assertFalse(q.isEmpty());
70          assertEquals(Integer.MAX_VALUE, q.remainingCapacity());
71          assertEquals(n, q.size());
72 +        assertEquals((Integer) 0, q.peek());
73          return q;
74      }
75  
# Line 410 | Line 411 | public class PriorityBlockingQueueTest e
411              }});
412  
413          aboutToWait.await();
414 <        waitForThreadToEnterWaitState(t, LONG_DELAY_MS);
414 >        waitForThreadToEnterWaitState(t);
415          t.interrupt();
416          awaitTermination(t);
417      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines