Skip to content

Commit d322931

Browse files
committed
remove print
1 parent bd3b4c7 commit d322931

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/expressions/ArithmeticExpressionSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ class ArithmeticExpressionSuite extends SparkFunSuite with ExpressionEvalHelper
347347

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

353353
val ctx2 = new CodegenContext()

0 commit comments

Comments
 (0)