From b45819ac43311dc830a97f15d1278936efca1cc1 Mon Sep 17 00:00:00 2001 From: tedyu Date: Sat, 23 Apr 2016 16:42:37 -0700 Subject: [SPARK-14856] Correct message in assertion for 'returning batch for wide 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 Closes #12639 from tedyu/master. --- .../spark/sql/execution/datasources/parquet/ParquetQuerySuite.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/parquet/ParquetQuerySuite.scala b/sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/parquet/ParquetQuerySuite.scala index ed20c45d5f..f1e9726c38 100644 --- a/sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/parquet/ParquetQuerySuite.scala +++ b/sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/parquet/ParquetQuerySuite.scala @@ -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 : _*)) } } -- cgit v1.2.3