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

Comparing jsr166/src/test/tck/ScheduledExecutorTest.java (file contents):
Revision 1.67 by jsr166, Mon Oct 5 22:09:02 2015 UTC vs.
Revision 1.69 by jsr166, Tue Oct 6 00:41:47 2015 UTC

# Line 48 | Line 48 | public class ScheduledExecutorTest exten
48              final Runnable task = new CheckedRunnable() {
49                  public void realRun() { done.countDown(); }};
50              p.execute(task);
51 <            assertTrue(done.await(SMALL_DELAY_MS, MILLISECONDS));
51 >            assertTrue(done.await(LONG_DELAY_MS, MILLISECONDS));
52          }
53      }
54  
# Line 1141 | Line 1141 | public class ScheduledExecutorTest exten
1141              List<Callable<String>> l = new ArrayList<Callable<String>>();
1142              l.add(new NPETask());
1143              List<Future<String>> futures =
1144 <                e.invokeAll(l, MEDIUM_DELAY_MS, MILLISECONDS);
1144 >                e.invokeAll(l, LONG_DELAY_MS, MILLISECONDS);
1145              assertEquals(1, futures.size());
1146              try {
1147                  futures.get(0).get();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines