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

Comparing jsr166/src/test/tck/LinkedBlockingQueueTest.java (file contents):
Revision 1.7 by dl, Sat Dec 27 19:26:43 2003 UTC vs.
Revision 1.9 by dl, Wed Jan 7 01:13:50 2004 UTC

# Line 732 | Line 732 | public class LinkedBlockingQueueTest ext
732      }
733  
734      /**
735 <     * toArray with incompatable array type throws CCE
735 >     * toArray with incompatible array type throws CCE
736       */
737      public void testToArray1_BadArg() {
738          try {
# Line 980 | Line 980 | public class LinkedBlockingQueueTest ext
980              for (int i = 0; i < SIZE; ++i)
981                  assertEquals(l.get(i), new Integer(i));
982              t.join();
983 <            assertTrue(q.size() + l.size() == SIZE+1);
983 >            assertTrue(q.size() + l.size() >= SIZE);
984          } catch(Exception e){
985              unexpectedException();
986          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines