Skip to content

Commit

Permalink
Remove println.
Browse files Browse the repository at this point in the history
  • Loading branch information
marmbrus committed May 6, 2014
1 parent 695606b commit a3ec4f3
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,12 @@ import java.nio.ByteBuffer

import org.scalatest.FunSuite

import org.apache.spark.sql.Logging
import org.apache.spark.sql.catalyst.types._
import org.apache.spark.sql.columnar.ColumnarTestUtils._
import org.apache.spark.sql.execution.SparkSqlSerializer

class ColumnTypeSuite extends FunSuite {
class ColumnTypeSuite extends FunSuite with Logging {
val DEFAULT_BUFFER_SIZE = 512

test("defaultSize") {
Expand Down Expand Up @@ -163,7 +164,7 @@ class ColumnTypeSuite extends FunSuite {

buffer.rewind()
seq.foreach { expected =>
println("buffer = " + buffer + ", expected = " + expected)
logger.info("buffer = " + buffer + ", expected = " + expected)
val extracted = columnType.extract(buffer)
assert(
expected === extracted,
Expand Down

0 comments on commit a3ec4f3

Please sign in to comment.