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"