Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
liuneng1994 committed Jun 25, 2024
1 parent 41bceb4 commit b71f129
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,7 @@ class GlutenDataFrameFunctionsSuite extends DataFrameFunctionsSuite with GlutenS
(Seq(Seq.empty, Seq(1)))
).toDF("i")

val intDFResult = Seq(
Row(Seq(1, 2, 3, 4, 5, 6)),
Row(Seq(1, 2)),
Row(Seq(1)),
Row(Seq(1)))
val intDFResult = Seq(Row(Seq(1, 2, 3, 4, 5, 6)), Row(Seq(1, 2)), Row(Seq(1)), Row(Seq(1)))

def testInt(): Unit = {
checkAnswer(intDF.select(flatten($"i")), intDFResult)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,7 @@ class GlutenDataFrameFunctionsSuite extends DataFrameFunctionsSuite with GlutenS
(Seq(Seq.empty, Seq(1)))
).toDF("i")

val intDFResult = Seq(
Row(Seq(1, 2, 3, 4, 5, 6)),
Row(Seq(1, 2)),
Row(Seq(1)),
Row(Seq(1)))
val intDFResult = Seq(Row(Seq(1, 2, 3, 4, 5, 6)), Row(Seq(1, 2)), Row(Seq(1)), Row(Seq(1)))

def testInt(): Unit = {
checkAnswer(intDF.select(flatten($"i")), intDFResult)
Expand Down

0 comments on commit b71f129

Please sign in to comment.