Skip to content

Commit 5688702

Browse files
committed
Fix the unit test
1 parent ddf741a commit 5688702

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

streaming/src/test/scala/org/apache/spark/streaming/ui/StreamingJobProgressListenerSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ class StreamingJobProgressListenerSuite extends TestSuiteBase with Matchers {
100100

101101
test("Remove the old completed batches when exceeding the limit") {
102102
val ssc = setupStreams(input, operation)
103-
val limit = ssc.conf.getInt("spark.streaming.ui.retainedBatches", 100)
103+
val limit = ssc.conf.getInt("spark.streaming.ui.retainedBatches", 1000)
104104
val listener = new StreamingJobProgressListener(ssc)
105105

106106
val receivedBlockInfo = Map(

0 commit comments

Comments
 (0)