Skip to content

Commit

Permalink
remove useless spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
binglihub committed Jul 9, 2018
1 parent b07551c commit 41a3cc5
Showing 1 changed file with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import org.apache.spark.sql.{Row, SaveMode}

import scala.util.Random

class TruncateTableSuite extends IntegrationSuiteBase{
class TruncateTableSuite extends IntegrationSuiteBase {
val table = s"test_table_$randomSuffix"

lazy val st1 = new StructType(
Expand Down Expand Up @@ -47,7 +47,6 @@ class TruncateTableSuite extends IntegrationSuiteBase{
super.beforeAll()
}


test("use truncate table with staging table") {

jdbcUpdate(s"drop table if exists $table")
Expand Down Expand Up @@ -82,8 +81,6 @@ class TruncateTableSuite extends IntegrationSuiteBase{
//check schema
assert(checkSchema1())



}

test("use truncate table without staging table") {
Expand Down Expand Up @@ -213,10 +210,7 @@ class TruncateTableSuite extends IntegrationSuiteBase{
st.equals(st1)
}




override def afterAll(): Unit = {
override def afterAll(): Unit = {
jdbcUpdate(s"drop table if exists $table")
super.afterAll()
}
Expand Down

0 comments on commit 41a3cc5

Please sign in to comment.