--- jsr166/src/test/tck/ScheduledExecutorTest.java 2018/01/08 02:04:15 1.96 +++ jsr166/src/test/tck/ScheduledExecutorTest.java 2018/11/24 21:41:21 1.97 @@ -607,7 +607,7 @@ public class ScheduledExecutorTest exten final ScheduledThreadPoolExecutor p = new ScheduledThreadPoolExecutor(1); try (PoolCleaner cleaner = cleaner(p, releaser)) { for (int i = 0; i < tasks.length; i++) - tasks[i] = p.schedule(new SmallPossiblyInterruptedRunnable(), + tasks[i] = p.schedule(possiblyInterruptedRunnable(SMALL_DELAY_MS), LONG_DELAY_MS, MILLISECONDS); int max = tasks.length; if (tasks[4].cancel(true)) --max;