Skip to content

Commit

Permalink
Fix bug in tests that only show up in 2.10.
Browse files Browse the repository at this point in the history
  • Loading branch information
tixxit committed Oct 29, 2014
1 parent 077b595 commit 6d86b79
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions framian/src/test/scala/framian/CsvSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ class CsvSpec extends Specification {
Value("AirPassengers")
)))))
val columnAirPassengers = Frame.fromRows(
1 :: 1949 :: 112 :: HNil,
2 :: 1949.08333333333 :: 118 :: HNil,
3 :: 1949.16666666667 :: 132 :: HNil,
4 :: 1949.25 :: 129 :: HNil)
1 :: BigDecimal(1949) :: 112 :: HNil,
2 :: BigDecimal(1949.08333333333) :: 118 :: HNil,
3 :: BigDecimal(1949.16666666667) :: 132 :: HNil,
4 :: BigDecimal(1949.25) :: 129 :: HNil)
.withColIndex(Index.fromKeys("", "time", "AirPassengers"))
.withRowIndex(withColumnRowIndex)

Expand Down

0 comments on commit 6d86b79

Please sign in to comment.