Skip to content

Commit

Permalink
test: fix user for postgres test
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Nov 21, 2023
1 parent 2d9a39e commit 37dfb19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@


async def get_test_db() -> AsyncGenerator[PgAsyncDatabase, None]:
db_instance = PgAsyncDatabase("postgresql://localhost:5432/postgres", TEST_SCHEMA)
db_instance = PgAsyncDatabase("postgresql://postgres@localhost:5432/postgres", TEST_SCHEMA)
await db_instance.initialize(pool_size=1) # Small pool size for testing
yield db_instance

Expand Down

0 comments on commit 37dfb19

Please sign in to comment.