Skip to content

Commit

Permalink
Updated otj-pg-embedded to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Pask committed Feb 2, 2022
1 parent 6137447 commit b75ba4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ trait TestEmbeddedPostgres extends BeforeAndAfterEach with BeforeAndAfterAll wit
override protected def beforeAll(): Unit = {
super.beforeAll()
postgres = EmbeddedPostgres.builder().start()
val url = postgres.getJdbcUrl("postgres", "postgres")
val url = postgres.getJdbcUrl("postgres")
postgres.getPostgresDatabase.getConnection.asInstanceOf[PgConnection].setPrepareThreshold(100)
currentDbConfig = TestConfig.db.copy(
username = "postgres",
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ val emailDependencies = Seq(
val scalatest = "org.scalatest" %% "scalatest" % "3.2.11" % Test
val unitTestingStack = Seq(scalatest)

val embeddedPostgres = "com.opentable.components" % "otj-pg-embedded" % "0.13.4" % Test
val embeddedPostgres = "com.opentable.components" % "otj-pg-embedded" % "1.0.0" % Test
val dbTestingStack = Seq(embeddedPostgres)

val commonDependencies = baseDependencies ++ unitTestingStack ++ loggingDependencies ++ configDependencies
Expand Down

0 comments on commit b75ba4b

Please sign in to comment.