Skip to content

Commit

Permalink
[SPARK-14856] Correct message in assertion for 'returning batch for w…
Browse files Browse the repository at this point in the history
…ide table'

## What changes were proposed in this pull request?

There was a typo in the message for second assertion in "returning batch for wide table" test

## How was this patch tested?

Existing tests.

Author: tedyu <yuzhihong@gmail.com>

Closes #12639 from tedyu/master.
  • Loading branch information
tedyu authored and davies committed Apr 23, 2016
1 parent bebb024 commit b45819a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ class ParquetQuerySuite extends QueryTest with ParquetTest with SharedSQLContext
val df3 = df2.selectExpr(columns : _*)
assert(
df3.queryExecution.sparkPlan.find(_.isInstanceOf[BatchedDataSourceScanExec]).isDefined,
"Should not return batch")
"Should return batch")
checkAnswer(df3, df.selectExpr(columns : _*))
}
}
Expand Down

0 comments on commit b45819a

Please sign in to comment.