Skip to content

Commit

Permalink
corrected testcase
Browse files Browse the repository at this point in the history
  • Loading branch information
gvramana committed Sep 19, 2014
1 parent 3624471 commit 193fa81
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ class ExpressionEvaluationSuite extends FunSuite {
val c4 = 'a.double.at(3)

checkEvaluation(UnaryMinus(c1), -1.1, row)
checkEvaluation(UnaryMinus(Literal(100.0, DoubleType)), -100.0))
checkEvaluation(UnaryMinus(Literal(100.0, DoubleType)), -100.0)
checkEvaluation(Add(c1, c4), null, row)
checkEvaluation(Add(c1, c2), 3.1, row)
checkEvaluation(Add(c1, Literal(null, DoubleType)), null, row)
Expand Down

0 comments on commit 193fa81

Please sign in to comment.