From 959b96e7cc98592950b72524c8ec0b68e3cfd966 Mon Sep 17 00:00:00 2001 From: Kostas Kyrimis Date: Mon, 2 Sep 2024 17:32:53 +0300 Subject: [PATCH] fix(test_auth_resp3_bug): release build failing (#3621) * remove problematic assertion Signed-off-by: kostas --- tests/dragonfly/acl_family_test.py | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/tests/dragonfly/acl_family_test.py b/tests/dragonfly/acl_family_test.py index 81ee14ea6..345c8b4cf 100644 --- a/tests/dragonfly/acl_family_test.py +++ b/tests/dragonfly/acl_family_test.py @@ -634,15 +634,12 @@ async def test_auth_resp3_bug(df_factory): await client.execute_command("ACL SETUSER kostas +@all ON >tmp") res = await client.execute_command("HELLO 3 AUTH kostas tmp") - assert res == { - "server": "redis", - "version": "6.2.11", - "dragonfly_version": "df-dev", - "proto": 3, - "id": 1, - "mode": "standalone", - "role": "master", - } + assert res["server"] == "redis" + assert res["version"] == "6.2.11" + assert res["proto"] == 3 + assert res["mode"] == "standalone" + assert res["role"] == "master" + assert res["id"] == 1 await client.close()