Skip to content

Commit 9a9d8af

Browse files
committed
small fix
1 parent 92d4a80 commit 9a9d8af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/trees/TreeNodeSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ class TreeNodeSuite extends SparkFunSuite {
161161
val toZero: PartialFunction[Expression, Expression] = { case Literal(_, _) => Literal(0) }
162162
val expect = SeqTupleExpression(Seq((Literal(0), Literal(0))), nonChildren)
163163

164-
val actual = before mapChildren toZero
164+
val actual = before mapChildren toZero
165165
assert(actual === expect)
166166
}
167167

0 commit comments

Comments
 (0)