From 37a414423ec0a16687b294836b8e2220e9e52762 Mon Sep 17 00:00:00 2001 From: "chandr-andr (Kiselev Aleksandr)" Date: Sat, 4 Jan 2025 14:27:41 +0800 Subject: [PATCH] Fix Signed-off-by: chandr-andr (Kiselev Aleksandr) --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index fa38cb8..8791a10 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -45,7 +45,7 @@ def postgresql_dsn() -> str: """ return ( os.environ.get("POSTGRESQL_URL") - or "postgresql://akiselev:12345@localhost:5432/taskiqpsqlpy" + or "postgresql://postgres:postgres@localhost:5432/taskiqpsqlpy" )