From 8f49af45a708c64c4a0afe7a9f3800469ca1b2c7 Mon Sep 17 00:00:00 2001 From: Vadim Kharitonov Date: Wed, 24 May 2023 15:39:39 +0200 Subject: [PATCH] Try to fix test --- test_runner/regress/test_proxy.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test_runner/regress/test_proxy.py b/test_runner/regress/test_proxy.py index 9396b4ad1a..ef577da914 100644 --- a/test_runner/regress/test_proxy.py +++ b/test_runner/regress/test_proxy.py @@ -283,12 +283,11 @@ async def test_compute_cache_invalidation( await web.TCPSite(runner, "127.0.0.1", console_port).start() # Create a user we're going to use in the test sequence - (user, password) = ("borat", "password") + user, password = "borat", "password" vanilla_pg.start().safe_psql(f"create role {user} with login password '{password}'") async def try_connect(): - magic = f"endpoint=irrelevant;{password}" - await console_proxy.connect_async(user=user, password=magic, dbname="postgres") + await console_proxy.connect_async(user=user, password=password, dbname="postgres") assert wake_compute_called == 0