From eec09a13c75649519f23bc0a2bc77fdcd5edbb6c Mon Sep 17 00:00:00 2001 From: Vladislav Date: Sat, 13 May 2023 16:25:36 +0300 Subject: [PATCH] fix: fix test connection name (#1211) Signed-off-by: Vladislav Oleshko --- tests/dragonfly/server_family_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/dragonfly/server_family_test.py b/tests/dragonfly/server_family_test.py index b9dd35fe5..815153319 100644 --- a/tests/dragonfly/server_family_test.py +++ b/tests/dragonfly/server_family_test.py @@ -56,7 +56,7 @@ async def test_multi_eval(async_client: aioredis.Redis): async def test_connection_name(async_client: aioredis.Redis): name = await async_client.execute_command("CLIENT GETNAME") - assert name == "test" + assert name == "default-async-fixture" await async_client.execute_command("CLIENT SETNAME test_conn_name") name = await async_client.execute_command("CLIENT GETNAME") assert name == "test_conn_name"