Skip to content

Commit

Permalink
remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
kiszk committed Dec 5, 2017
1 parent bd3b4c7 commit d322931
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ class ArithmeticExpressionSuite extends SparkFunSuite with ExpressionEvalHelper

test("SPARK-22704: Least and greatest use less global variables") {
val ctx1 = new CodegenContext()
print(Least(Seq(Literal(1), Literal(1))).genCode(ctx1).code)
Least(Seq(Literal(1), Literal(1))).genCode(ctx1)
assert(ctx1.mutableStates.size == 1)

val ctx2 = new CodegenContext()
Expand Down

0 comments on commit d322931

Please sign in to comment.