Skip to content

Commit ee7f3c6

Browse files
committed
style
1 parent 4c19ecb commit ee7f3c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,13 @@ class DatasetSuite extends QueryTest with SharedSQLContext {
114114
}
115115

116116
test("map with type change") {
117-
val ds = Seq(("a", 1) , ("b", 2), ("c", 3)).toDS()
117+
val ds = Seq(("a", 1), ("b", 2), ("c", 3)).toDS()
118118

119119
checkAnswer(
120120
ds.map(identity[(String, Int)])
121121
.as[OtherTuple]
122122
.map(identity[OtherTuple]),
123-
OtherTuple("a", 1) , OtherTuple("b", 2), OtherTuple("c", 3))
123+
OtherTuple("a", 1), OtherTuple("b", 2), OtherTuple("c", 3))
124124
}
125125

126126
test("map and group by with class data") {

0 commit comments

Comments
 (0)