Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
guizmaii committed Mar 14, 2024
1 parent ed89f27 commit bb86f81
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ class PeopleDoobieReturningSpec extends PeopleReturningSpec {
"org.postgresql.Driver",
s"jdbc:postgresql://${System.getenv("POSTGRES_HOST")}:${System.getenv("POSTGRES_PORT")}/quill_test",
"postgres",
System.getenv("POSTGRES_PASSWORD")
System.getenv("POSTGRES_PASSWORD"),
None
),
HC.commit
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ class PostgresDoobieContextSuite extends AnyFreeSpec with Matchers {
"org.postgresql.Driver",
s"jdbc:postgresql://${System.getenv("POSTGRES_HOST")}:${System.getenv("POSTGRES_PORT")}/doobie_test",
"postgres",
System.getenv("POSTGRES_PASSWORD")
System.getenv("POSTGRES_PASSWORD"),
None
),
HC.rollback,
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ class Issue1067 extends AnyFreeSpec with Matchers {
"org.postgresql.Driver",
s"jdbc:postgresql://${System.getenv("POSTGRES_HOST")}:${System.getenv("POSTGRES_PORT")}/doobie_test",
"postgres",
System.getenv("POSTGRES_PASSWORD")
System.getenv("POSTGRES_PASSWORD"),
None
)

val dc = new DoobieContext.Postgres(Literal)
Expand Down

0 comments on commit bb86f81

Please sign in to comment.