Skip to content

Commit

Permalink
turn off scalastyle for non-ascii
Browse files Browse the repository at this point in the history
  • Loading branch information
zhichao-li committed Jun 29, 2015
1 parent de3f5ea commit e218d1b
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,10 @@ class MathFunctionsSuite extends SparkFunSuite with ExpressionEvalHelper {
checkEvaluation(Hex(Literal(-100800200404L)), "FFFFFFE887D7012C")
checkEvaluation(Hex(Literal("helloHex")), "68656C6C6F486578")
checkEvaluation(Hex(Literal("helloHex".getBytes())), "68656C6C6F486578")
// scalastyle:off
// Turn off scala style for non-ascii chars
checkEvaluation(Hex(Literal("三重的")), "E4B889E9878DE79A84")
// scalastyle:on
}

test("hypot") {
Expand Down

0 comments on commit e218d1b

Please sign in to comment.