Skip to content

Commit

Permalink
Removing decimal test that doesn't work with Scala 2.11
Browse files Browse the repository at this point in the history
  • Loading branch information
pwendell authored and ScrapCodes committed Nov 10, 2014
1 parent f5cad4e commit 1743a73
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ class DecimalSuite extends FunSuite with PrivateMethodTester {
test("hash code") {
assert(Decimal(123).hashCode() === (123).##)
assert(Decimal(-123).hashCode() === (-123).##)
assert(Decimal(123.312).hashCode() === (123.312).##)
assert(Decimal(Int.MaxValue).hashCode() === Int.MaxValue.##)
assert(Decimal(Long.MaxValue).hashCode() === Long.MaxValue.##)
assert(Decimal(BigDecimal(123)).hashCode() === (123).##)
Expand Down

0 comments on commit 1743a73

Please sign in to comment.