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.41 by jsr166, Thu Oct 28 22:20:47 2010 UTC vs.
Revision 1.42 by jsr166, Wed Nov 3 07:54:52 2010 UTC

# Line 704 | Line 704 | public class DelayQueueTest extends JSR1
704      }
705  
706      /**
707 <     * toArray with incompatible array type throws CCE
707 >     * toArray(incompatible array type) throws ArrayStoreException
708       */
709      public void testToArray1_BadArg() {
710          DelayQueue q = populatedQueue(SIZE);
711          try {
712 <            Object o[] = q.toArray(new String[10]);
712 >            q.toArray(new String[10]);
713              shouldThrow();
714          } catch (ArrayStoreException success) {}
715      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines