Skip to content

Commit 5e142b6

Browse files
author
Davies Liu
committed
fix scala style
1 parent eca99de commit 5e142b6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/analysis/AnalysisSuite.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,8 @@ class AnalysisSuite extends SparkFunSuite with BeforeAndAfter {
173173
assert(pl(0).dataType == DoubleType)
174174
assert(pl(1).dataType == DoubleType)
175175
assert(pl(2).dataType == DoubleType)
176-
assert(pl(3).dataType == DecimalType(38, 29)) // StringType will be promoted into Decimal(38, 18)
176+
// StringType will be promoted into Decimal(38, 18)
177+
assert(pl(3).dataType == DecimalType(38, 29))
177178
assert(pl(4).dataType == DoubleType)
178179
}
179180
}

0 commit comments

Comments
 (0)