From 7197694840e55490aabf5c67dce54057bfeaceb3 Mon Sep 17 00:00:00 2001 From: Wei Ouyang Date: Tue, 10 Sep 2024 00:44:19 -0700 Subject: [PATCH] Fix list client --- tests/test_redis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_redis.py b/tests/test_redis.py index 14bfa548..882f1e19 100644 --- a/tests/test_redis.py +++ b/tests/test_redis.py @@ -39,7 +39,7 @@ async def test_redis_store(redis_store): assert find_item(wss, "name", "test") api = await redis_store.connect_to_workspace("test", client_id="test-app-99") - clients = set(await api.list_clients()) + clients = await api.list_clients() assert find_item(clients, "id", "test/test-app-99") await api.log("hello") services = await api.list_services()