Skip to content

Commit

Permalink
fix testScalastyle issues
Browse files Browse the repository at this point in the history
Signed-off-by: YANGDB <[email protected]>
  • Loading branch information
YANG-DB committed Oct 11, 2023
1 parent b632f70 commit 1258dc5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class FlintSparkPPLITSuite

test("create ppl simple query with head (limit) and sorted test") {
val frame = sql(s"""
| source = $testTable| sort name | head 2
| source = $testTable| sort name | head 2
| """.stripMargin)

// Retrieve the results
Expand Down Expand Up @@ -475,7 +475,7 @@ class FlintSparkPPLITSuite

test("create ppl simple age avg query test") {
val frame = sql(s"""
| source = $testTable| stats avg(age)
| source = $testTable| stats avg(age)
| """.stripMargin)

// Retrieve the results
Expand Down Expand Up @@ -503,7 +503,7 @@ class FlintSparkPPLITSuite

test("create ppl simple age avg query with filter test") {
val frame = sql(s"""
| source = $testTable| where age < 50 | stats avg(age)
| source = $testTable| where age < 50 | stats avg(age)
| """.stripMargin)

// Retrieve the results
Expand Down

0 comments on commit 1258dc5

Please sign in to comment.