Skip to content

Commit 4074a61

Browse files
committed
Fixed syntax issue after lib update.
1 parent 1aafd6a commit 4074a61

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

doobie/src/test/scala/za/co/absa/db/fadb/testing/classes/DoobieTest.scala

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,10 @@ trait DoobieTest {
3131
object Integration extends DBSchema
3232

3333
protected val transactor: Aux[IO, Unit] = Transactor.fromDriverManager[IO](
34-
"org.postgresql.Driver",
35-
"jdbc:postgresql://localhost:5432/movies",
36-
"postgres",
37-
"postgres",
34+
driver = "org.postgresql.Driver",
35+
url = "jdbc:postgresql://localhost:5432/movies",
36+
user = "postgres",
37+
password = "postgres",
38+
logHandler = None
3839
)
3940
}

project/Dependencies.scala

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ object Dependencies {
4545

4646
def doobieDependencies(scalaVersion: String): Seq[ModuleID] = {
4747
commonDependencies(scalaVersion) ++ Seq(
48-
"org.tpolecat" %% "doobie-core" % "1.0.0-RC3",
49-
"org.tpolecat" %% "doobie-hikari" % "1.0.0-RC3",
50-
"org.tpolecat" %% "doobie-postgres" % "1.0.0-RC3",
51-
"org.tpolecat" %% "doobie-postgres-circe" % "1.0.0-RC3",
52-
"io.circe" %% "circe-generic" % "0.14.9" % Test
48+
"org.tpolecat" %% "doobie-core" % "1.0.0-RC11",
49+
"org.tpolecat" %% "doobie-hikari" % "1.0.0-RC11",
50+
"org.tpolecat" %% "doobie-postgres" % "1.0.0-RC11",
51+
"org.tpolecat" %% "doobie-postgres-circe" % "1.0.0-RC11",
52+
"io.circe" %% "circe-generic" % "0.14.15" % Test
5353
)
5454
}
5555

0 commit comments

Comments
 (0)