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 2a24b5f commit 0cd31adCopy full SHA for 0cd31ad
sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/DataSourceSuite.scala
@@ -54,13 +54,11 @@ class DataSourceSuite extends SharedSparkSession {
54
)
55
56
assert(
57
- resultPaths.equals(
58
- Seq(
59
- globPath1Result1,
60
- globPath1Result2,
61
- globPath2Result1,
62
- globPath2Result2
63
- )
+ resultPaths.toSet == Set(
+ globPath1Result1,
+ globPath1Result2,
+ globPath2Result1,
+ globPath2Result2
64
65
66
}
@@ -77,11 +75,9 @@ class DataSourceSuite extends SharedSparkSession {
77
75
78
76
79
80
81
82
- path1,
83
- path2
84
+ path1,
+ path2
85
86
87
0 commit comments