aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/src/test/scala/spark/scheduler/SparkListenerSuite.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/test/scala/spark/scheduler/SparkListenerSuite.scala b/core/src/test/scala/spark/scheduler/SparkListenerSuite.scala
index a45a5efbb4..2f5af10e69 100644
--- a/core/src/test/scala/spark/scheduler/SparkListenerSuite.scala
+++ b/core/src/test/scala/spark/scheduler/SparkListenerSuite.scala
@@ -20,7 +20,7 @@ class SparkListenerSuite extends FunSuite with LocalSparkContext with ShouldMatc
//just to make sure some of the tasks take a noticeable amount of time
val w = {i:Int =>
if (i == 0)
- Thread.sleep(25)
+ Thread.sleep(100)
i
}