We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a96190 commit 50a2fd6Copy full SHA for 50a2fd6
core/src/test/scala/org/apache/spark/scheduler/SparkListenerSuite.scala
@@ -181,7 +181,7 @@ class SparkListenerSuite extends FunSuite with LocalSparkContext with Matchers
181
assert(sc.listenerBus.waitUntilEmpty(WAIT_TIMEOUT_MILLIS))
182
listener.stageInfos.size should be {2} // Shuffle map stage + result stage
183
val stageInfo3 = listener.stageInfos.keys.find(_.stageId == 2).get
184
- stageInfo3.rddInfos.size should be {2} // ShuffledRDD, MapPartitionsRDD
+ stageInfo3.rddInfos.size should be {1} // ShuffledRDD
185
stageInfo3.rddInfos.forall(_.numPartitions == 4) should be {true}
186
stageInfo3.rddInfos.exists(_.name == "Trois") should be {true}
187
}
0 commit comments