Skip to content

Commit

Permalink
update to named args for dbJanitor
Browse files Browse the repository at this point in the history
  • Loading branch information
zganger committed Jul 2, 2024
1 parent 768c493 commit b643ee9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions backend/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@
def database():
cfg = TestingConfig()
janitor = DatabaseJanitor(
cfg.POSTGRES_USER,
cfg.POSTGRES_HOST,
cfg.PGPORT,
cfg.POSTGRES_DB,
9.6,
cfg.POSTGRES_PASSWORD,
user=cfg.POSTGRES_USER,
host=cfg.POSTGRES_HOST,
port=cfg.PGPORT,
dbname=cfg.POSTGRES_DB,
version=16.3,
password=cfg.POSTGRES_PASSWORD,
)

try:
Expand Down

0 comments on commit b643ee9

Please sign in to comment.