Skip to content

Commit

Permalink
fix testcase
Browse files Browse the repository at this point in the history
  • Loading branch information
jackylk committed Feb 26, 2015
1 parent 7cdbe91 commit a0e0f4b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;

import org.apache.spark.sql.*;
Expand Down Expand Up @@ -82,8 +83,9 @@ public void testVarargMethods() {
df.select(coalesce(col("key")));
}

@Test
@Ignore
public void testShow() {
// This test case is intended ignored, but to make sure it compiles correctly
DataFrame df = context.table("testData");
df.show();
df.show(1000);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,8 @@ class DataFrameSuite extends QueryTest {
checkAnswer(df.select(df("key")), testData.select('key).collect().toSeq)
}

test("show") {
ignore("show") {
// This test case is intended ignored, but to make sure it compiles correctly
testData.select($"*").show()
testData.select($"*").show(1000)
}
Expand Down

0 comments on commit a0e0f4b

Please sign in to comment.