From 37dfb196722e674fd1fbe463981bc182678e62d5 Mon Sep 17 00:00:00 2001 From: David Lougheed Date: Tue, 21 Nov 2023 10:35:16 -0500 Subject: [PATCH] test: fix user for postgres test --- tests/test_db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_db.py b/tests/test_db.py index 76878f5..c1863c7 100644 --- a/tests/test_db.py +++ b/tests/test_db.py @@ -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