Bump up time out (again)

This commit is contained in:
dsyer
2007-08-29 06:49:29 +00:00
parent c999fbbd1a
commit c74a726e6c

View File

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