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

Comparing jsr166/src/test/tck/LinkedTransferQueueTest.java (file contents):
Revision 1.35 by jsr166, Fri Oct 29 07:27:26 2010 UTC vs.
Revision 1.36 by jsr166, Wed Nov 3 07:54:52 2010 UTC

# Line 584 | Line 584 | public class LinkedTransferQueueTest ext
584      }
585  
586      /**
587 <     * toArray(incompatible array type) throws CCE
587 >     * toArray(incompatible array type) throws ArrayStoreException
588       */
589      public void testToArray1_BadArg() {
590          LinkedTransferQueue q = populatedQueue(SIZE);
591          try {
592 <            Object o[] = q.toArray(new String[10]);
592 >            q.toArray(new String[10]);
593              shouldThrow();
594          } catch (ArrayStoreException success) {}
595      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines