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

Comparing jsr166/src/test/tck/ThreadPoolExecutorTest.java (file contents):
Revision 1.64 by jsr166, Mon Sep 28 21:15:44 2015 UTC vs.
Revision 1.65 by jsr166, Sat Oct 3 00:37:32 2015 UTC

# Line 1894 | Line 1894 | public class ThreadPoolExecutorTest exte
1894              l.add(new StringTask());
1895              l.add(new StringTask());
1896              List<Future<String>> futures =
1897 <                e.invokeAll(l, MEDIUM_DELAY_MS, MILLISECONDS);
1897 >                e.invokeAll(l, LONG_DELAY_MS, MILLISECONDS);
1898              assertEquals(2, futures.size());
1899              for (Future<String> future : futures)
1900                  assertSame(TEST_STRING, future.get());

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines