fix(test_auth_resp3_bug): release build failing (#3621)

* remove problematic assertion

Signed-off-by: kostas <kostas@dragonflydb.io>
This commit is contained in:
Kostas Kyrimis 2024-09-02 17:32:53 +03:00 committed by GitHub
parent 7203667723
commit 959b96e7cc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -634,15 +634,12 @@ async def test_auth_resp3_bug(df_factory):
await client.execute_command("ACL SETUSER kostas +@all ON >tmp") await client.execute_command("ACL SETUSER kostas +@all ON >tmp")
res = await client.execute_command("HELLO 3 AUTH kostas tmp") res = await client.execute_command("HELLO 3 AUTH kostas tmp")
assert res == { assert res["server"] == "redis"
"server": "redis", assert res["version"] == "6.2.11"
"version": "6.2.11", assert res["proto"] == 3
"dragonfly_version": "df-dev", assert res["mode"] == "standalone"
"proto": 3, assert res["role"] == "master"
"id": 1, assert res["id"] == 1
"mode": "standalone",
"role": "master",
}
await client.close() await client.close()