Skip to content

Commit 07142cf

Browse files
iamhumanbeingsrowen
authored andcommitted
[SPARK-21843] testNameNote should be "(minNumPostShufflePartitions: 5)"
Signed-off-by: iamhumanbeing <iamhumanbeinggmail.com> ## What changes were proposed in this pull request? testNameNote = "(minNumPostShufflePartitions: 3) is not correct. it should be "(minNumPostShufflePartitions: " + numPartitions + ")" in ExchangeCoordinatorSuite ## How was this patch tested? unit tests Please review http://spark.apache.org/contributing.html before opening a pull request. Author: iamhumanbeing <[email protected]> Closes apache#19058 from iamhumanbeing/testnote.
1 parent 3b66b1c commit 07142cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/core/src/test/scala/org/apache/spark/sql/execution/ExchangeCoordinatorSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ class ExchangeCoordinatorSuite extends SparkFunSuite with BeforeAndAfterAll {
280280

281281
Seq(Some(5), None).foreach { minNumPostShufflePartitions =>
282282
val testNameNote = minNumPostShufflePartitions match {
283-
case Some(numPartitions) => "(minNumPostShufflePartitions: 3)"
283+
case Some(numPartitions) => "(minNumPostShufflePartitions: " + numPartitions + ")"
284284
case None => ""
285285
}
286286

0 commit comments

Comments
 (0)