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:
parent
7203667723
commit
959b96e7cc
1 changed files with 6 additions and 9 deletions
|
@ -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()
|
||||
|
||||
|
|
Loading…
Reference in a new issue