Skip to content

Commit 4f65ce5

Browse files
committed
Remove redundant self-type from SQLTestUtilsBase
QueryTestBase already declares self: Suite, so SQLTestUtilsBase inherits the constraint. Co-authored-by: Isaac
1 parent 9caa47a commit 4f65ce5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

sql/core/src/test/scala/org/apache/spark/sql/test/SQLTestUtils.scala

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,14 @@
1717

1818
package org.apache.spark.sql.test
1919

20-
import org.scalatest.Suite
21-
2220
import org.apache.spark.sql.{QueryTest, QueryTestBase, Row}
2321

2422
/**
2523
* Helper trait that can be extended by all external SQL test suites.
2624
*
2725
* This is now an alias for [[QueryTestBase]].
2826
*/
29-
private[sql] trait SQLTestUtilsBase extends QueryTestBase { self: Suite => }
27+
private[sql] trait SQLTestUtilsBase extends QueryTestBase
3028

3129
/**
3230
* Helper trait that should be extended by all SQL test suites within the Spark

0 commit comments

Comments
 (0)