1
0
Fork 0
mirror of https://github.com/dragonflydb/dragonfly.git synced 2024-12-14 11:58:02 +00:00

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")
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()