We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99d6590 commit 41f6cfaCopy full SHA for 41f6cfa
sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/DataSourceSuite.scala
@@ -39,7 +39,7 @@ class DataSourceSuite extends SharedSparkSession {
39
checkFilesExist = true
40
)
41
42
- assert(resultPaths.toSet == allPathsInFs.toSet)
+ assert(resultPaths.toSet === allPathsInFs.toSet)
43
}
44
45
test("test glob paths") {
@@ -54,7 +54,7 @@ class DataSourceSuite extends SharedSparkSession {
54
55
56
assert(
57
- resultPaths.toSet == Set(
+ resultPaths.toSet === Set(
58
globPath1Result1,
59
globPath1Result2,
60
globPath2Result1,
@@ -75,7 +75,7 @@ class DataSourceSuite extends SharedSparkSession {
75
76
77
78
79
path1,
80
path2
81
0 commit comments