From c74a726e6ca16bc986bddf8c49119a4b9f2815f0 Mon Sep 17 00:00:00 2001 From: dsyer Date: Wed, 29 Aug 2007 06:49:29 +0000 Subject: [PATCH] Bump up time out (again) --- .../execution/step/simple/StepExecutorInterruptionTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/execution/src/test/java/org/springframework/batch/execution/step/simple/StepExecutorInterruptionTests.java b/execution/src/test/java/org/springframework/batch/execution/step/simple/StepExecutorInterruptionTests.java index faac2c29e..20a5d1daa 100644 --- a/execution/src/test/java/org/springframework/batch/execution/step/simple/StepExecutorInterruptionTests.java +++ b/execution/src/test/java/org/springframework/batch/execution/step/simple/StepExecutorInterruptionTests.java @@ -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++; }