Skip to content

Commit 1743a73

Browse files
pwendellScrapCodes
authored andcommitted
Removing decimal test that doesn't work with Scala 2.11
1 parent f5cad4e commit 1743a73

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/types/decimal/DecimalSuite.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ class DecimalSuite extends FunSuite with PrivateMethodTester {
112112
test("hash code") {
113113
assert(Decimal(123).hashCode() === (123).##)
114114
assert(Decimal(-123).hashCode() === (-123).##)
115-
assert(Decimal(123.312).hashCode() === (123.312).##)
116115
assert(Decimal(Int.MaxValue).hashCode() === Int.MaxValue.##)
117116
assert(Decimal(Long.MaxValue).hashCode() === Long.MaxValue.##)
118117
assert(Decimal(BigDecimal(123)).hashCode() === (123).##)

0 commit comments

Comments
 (0)