Skip to content

Commit 943a684

Browse files
sameeragarwalhvanhovell
authored andcommitted
[SPARK-20548] Disable ReplSuite.newProductSeqEncoder with REPL defined class
## What changes were proposed in this pull request? `newProductSeqEncoder with REPL defined class` in `ReplSuite` has been failing in-deterministically : https://spark-tests.appspot.com/failed-tests over the last few days. Disabling the test until a fix is in place. https://spark.test.databricks.com/job/spark-master-test-sbt-hadoop-2.7/176/testReport/junit/org.apache.spark.repl/ReplSuite/newProductSeqEncoder_with_REPL_defined_class/history/ ## How was this patch tested? N/A Author: Sameer Agarwal <[email protected]> Closes #17823 from sameeragarwal/disable-test.
1 parent 259860d commit 943a684

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

repl/scala-2.11/src/test/scala/org/apache/spark/repl/ReplSuite.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,8 @@ class ReplSuite extends SparkFunSuite {
474474
assertDoesNotContain("Exception", output)
475475
}
476476

477-
test("newProductSeqEncoder with REPL defined class") {
477+
// TODO: [SPARK-20548] Fix and re-enable
478+
ignore("newProductSeqEncoder with REPL defined class") {
478479
val output = runInterpreterInPasteMode("local-cluster[1,4,4096]",
479480
"""
480481
|case class Click(id: Int)

0 commit comments

Comments
 (0)