--- jsr166/src/test/tck/ScheduledExecutorTest.java 2004/01/22 14:39:25 1.20 +++ jsr166/src/test/tck/ScheduledExecutorTest.java 2004/01/22 15:17:35 1.21 @@ -144,7 +144,6 @@ public class ScheduledExecutorTest exten // an execution per SHORT delay, but no more than one SHORT more assertTrue(c >= SMALL_DELAY_MS / SHORT_DELAY_MS); assertTrue(c <= SMALL_DELAY_MS + SHORT_DELAY_MS); - assertTrue(h.isDone()); joinPool(p1); } catch(Exception e){ unexpectedException(); @@ -165,7 +164,6 @@ public class ScheduledExecutorTest exten int c = counter.count.get(); assertTrue(c >= SMALL_DELAY_MS / SHORT_DELAY_MS); assertTrue(c <= SMALL_DELAY_MS + SHORT_DELAY_MS); - assertTrue(h.isDone()); joinPool(p1); } catch(Exception e){ unexpectedException();