This is an automated email from the ASF dual-hosted git repository. dongjoon pushed a commit to branch branch-2.4 in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/branch-2.4 by this push: new 1c65b1d [SPARK-31422][CORE][FOLLOWUP] Fix a test case compilation error 1c65b1d is described below commit 1c65b1dae02029c5ad03061f1bab9bff4d22e70f Author: Dongjoon Hyun <dongj...@apache.org> AuthorDate: Sat Apr 11 08:53:57 2020 -0700 [SPARK-31422][CORE][FOLLOWUP] Fix a test case compilation error --- .../test/scala/org/apache/spark/storage/BlockManagerMasterSuite.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/test/scala/org/apache/spark/storage/BlockManagerMasterSuite.scala b/core/src/test/scala/org/apache/spark/storage/BlockManagerMasterSuite.scala index 0d54726..9a898a4 100644 --- a/core/src/test/scala/org/apache/spark/storage/BlockManagerMasterSuite.scala +++ b/core/src/test/scala/org/apache/spark/storage/BlockManagerMasterSuite.scala @@ -24,12 +24,12 @@ import org.apache.spark.{SparkConf, SparkFunSuite} class BlockManagerMasterSuite extends SparkFunSuite { test("SPARK-31422: getMemoryStatus should not fail after BlockManagerMaster stops") { - val bmm = new BlockManagerMaster(null, null, new SparkConf, true) + val bmm = new BlockManagerMaster(null, new SparkConf, true) assertTrue(bmm.getMemoryStatus.isEmpty) } test("SPARK-31422: getStorageStatus should not fail after BlockManagerMaster stops") { - val bmm = new BlockManagerMaster(null, null, new SparkConf, true) + val bmm = new BlockManagerMaster(null, new SparkConf, true) assertTrue(bmm.getStorageStatus.isEmpty) } } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org For additional commands, e-mail: commits-h...@spark.apache.org