--- jsr166/src/test/tck/ScheduledExecutorSubclassTest.java 2018/01/08 02:04:15 1.70 +++ jsr166/src/test/tck/ScheduledExecutorSubclassTest.java 2018/11/24 21:41:21 1.71 @@ -649,7 +649,7 @@ public class ScheduledExecutorSubclassTe final CustomExecutor p = new CustomExecutor(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;