This is an automated email from the ASF dual-hosted git repository. dongjoon pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/master by this push: new fda37bf432dd [SPARK-52431][SDP][TESTS][FOLLOWUP] Remove unused scalatest Matchers from SparkPipelinesSuite fda37bf432dd is described below commit fda37bf432dd9f10da09e0c67cb3cf2606b06776 Author: Wenchen Fan <wenc...@databricks.com> AuthorDate: Thu Sep 4 13:12:01 2025 -0700 [SPARK-52431][SDP][TESTS][FOLLOWUP] Remove unused scalatest Matchers from SparkPipelinesSuite ### What changes were proposed in this pull request? A minor followup of https://github.com/apache/spark/pull/51165 to remove scalatest `Matchers` from `SparkPipelinesSuite`, as it's not used at all. ### Why are the changes needed? cleanup ### Does this PR introduce _any_ user-facing change? no ### How was this patch tested? existing test ### Was this patch authored or co-authored using generative AI tooling? no Closes #52240 from cloud-fan/minor. Authored-by: Wenchen Fan <wenc...@databricks.com> Signed-off-by: Dongjoon Hyun <dongj...@apache.org> --- core/src/test/scala/org/apache/spark/deploy/SparkPipelinesSuite.scala | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/src/test/scala/org/apache/spark/deploy/SparkPipelinesSuite.scala b/core/src/test/scala/org/apache/spark/deploy/SparkPipelinesSuite.scala index a482eaa42c35..76dbb9684fd0 100644 --- a/core/src/test/scala/org/apache/spark/deploy/SparkPipelinesSuite.scala +++ b/core/src/test/scala/org/apache/spark/deploy/SparkPipelinesSuite.scala @@ -18,11 +18,10 @@ package org.apache.spark.deploy import org.scalatest.BeforeAndAfterEach -import org.scalatest.matchers.must.Matchers import org.apache.spark.SparkUserAppException -class SparkPipelinesSuite extends SparkSubmitTestUtils with Matchers with BeforeAndAfterEach { +class SparkPipelinesSuite extends SparkSubmitTestUtils with BeforeAndAfterEach { test("only spark submit args") { val args = Array( "--remote", --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org For additional commands, e-mail: commits-h...@spark.apache.org