Skip to content
Snippets Groups Projects
Commit 501370d9 authored by Bryan Cutler's avatar Bryan Cutler Committed by gatorsmile
Browse files

[SPARK-21583][HOTFIX] Removed intercept in test causing failures

Removing a check in the ColumnarBatchSuite that depended on a Java assertion.  This assertion is being compiled out in the Maven builds causing the test to fail.  This part of the test is not specifically from to the functionality that is being tested here.

Author: Bryan Cutler <cutlerb@gmail.com>

Closes #19098 from BryanCutler/hotfix-ColumnarBatchSuite-assertion.
parent fc45c2c8
No related branches found
No related tags found
No related merge requests found
......@@ -1308,10 +1308,6 @@ class ColumnarBatchSuite extends SparkFunSuite {
}
}
intercept[java.lang.AssertionError] {
batch.getRow(100)
}
batch.close()
allocator.close()
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment