Skip to content

Commit

Permalink
Fix more compile errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
lewchuk-inkling committed Jul 27, 2016
1 parent fc1067a commit cfb69bf
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ class PgUpsertSuite extends FunSuite {
).transactionally
), Duration.Inf)
}

///---
case class Bean2(id: Long, start: Int, end: Int)

Expand Down Expand Up @@ -232,8 +232,8 @@ class PgUpsertSuite extends FunSuite {
Bean2(102, 3, 4),
Bean2(103, 5, 6)
),
UpsertTests2.insertOrUpdate(Bean(101, 1, 7)),
UpsertTests2.insertOrUpdate(Bean(107, 8, 9))
UpsertTests2.insertOrUpdate(Bean2(101, 1, 7)),
UpsertTests2.insertOrUpdate(Bean2(107, 8, 9))
).andThen(
DBIO.seq(
UpsertTests2.sortBy(_.id).to[List].result.map(
Expand Down

0 comments on commit cfb69bf

Please sign in to comment.