Skip to content

Commit

Permalink
compile issues
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed Oct 16, 2022
1 parent 4f05c26 commit ad77586
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

package com.crealytics.spark.excel

import com.holdenkarau.spark.testing.DataFrameSuiteBase
import com.crealytics.spark.DataFrameSuiteBase
import org.scalatest.matchers.should.Matchers
import org.scalatest.wordspec.AnyWordSpec

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ class DataFrameWriterApiComplianceSuite extends AnyWordSpec with DataFrameSuiteB
.save()

val orderedSchemaColumns = dfCsv.schema.fields.map(f => f.name).sorted
val expectedDf = dfCsv.union(dfCsv).select(orderedSchemaColumns.head, orderedSchemaColumns.tail.toIndexedSeq: _*)
val expectedDf =
dfCsv.union(dfCsv).select(orderedSchemaColumns.head, orderedSchemaColumns.tail.toIndexedSeq: _*)

assertWrittenExcelData(expectedDf, targetDir)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

package com.crealytics.spark.v2.excel

import com.holdenkarau.spark.testing.DataFrameSuiteBase
import com.crealytics.spark.DataFrameSuiteBase
import org.scalatest.matchers.should.Matchers
import org.scalatest.wordspec.AnyWordSpec

Expand Down

0 comments on commit ad77586

Please sign in to comment.