Skip to content

Commit

Permalink
- Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sonal committed Oct 10, 2019
1 parent f451f4b commit 4390c64
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ object SnappyTestUtils {
.option("inferSchema", "false")
.option("nullValue", "NULL")
.option("maxCharsPerColumn", "4096")
.load(s"${expectedFile}")
.load(s"${expectedFile.iterator.next().getAbsolutePath}")

val missingDF: Array[Row] = sparkDF2.except(snappyDF).sort(sparkDF2.columns(0)).collect()
val unexpectedDF: Array[Row] = snappyDF.except(sparkDF2).sort(sparkDF2.columns(0)).collect()
Expand Down

0 comments on commit 4390c64

Please sign in to comment.