This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new 65ff979afa [test] Remove print test name in spark test (#7071)
65ff979afa is described below
commit 65ff979afa6097c4e734d095d9e99568bd5cac75
Author: Zouxxyy <[email protected]>
AuthorDate: Sat Jan 17 20:38:10 2026 +0800
[test] Remove print test name in spark test (#7071)
---
.../scala/org/apache/paimon/spark/PaimonSparkTestBase.scala | 10 ----------
1 file changed, 10 deletions(-)
diff --git
a/paimon-spark/paimon-spark-ut/src/test/scala/org/apache/paimon/spark/PaimonSparkTestBase.scala
b/paimon-spark/paimon-spark-ut/src/test/scala/org/apache/paimon/spark/PaimonSparkTestBase.scala
index 497c00f191..3208609835 100644
---
a/paimon-spark/paimon-spark-ut/src/test/scala/org/apache/paimon/spark/PaimonSparkTestBase.scala
+++
b/paimon-spark/paimon-spark-ut/src/test/scala/org/apache/paimon/spark/PaimonSparkTestBase.scala
@@ -35,8 +35,6 @@ import
org.apache.spark.sql.execution.datasources.v2.{DataSourceV2Relation, Data
import org.apache.spark.sql.internal.SQLConf
import org.apache.spark.sql.paimon.Utils
import org.apache.spark.sql.test.SharedSparkSession
-import org.scalactic.source.Position
-import org.scalatest.Tag
import java.io.File
import java.util.{TimeZone, UUID}
@@ -154,14 +152,6 @@ class PaimonSparkTestBase
}
}
- override def test(testName: String, testTags: Tag*)(testFun: => Any)(implicit
- pos: Position): Unit = {
- super.test(testName, testTags: _*) {
- println(testName)
- testFun
- }(pos)
- }
-
def loadTable(tableName: String): FileStoreTable = {
loadTable(dbName0, tableName)
}