Allow more time for interrupt to happen

This commit is contained in:
dsyer
2007-08-21 15:15:08 +00:00
parent e475f0e3d0
commit d822186490

View File

@@ -105,7 +105,7 @@ public class StepExecutorInterruptionTests extends TestCase {
processingThread.interrupt();
int count = 0;
while (processingThread.isAlive() && count < 15) {
while (processingThread.isAlive() && count < 150) {
Thread.sleep(20);
count++;
}