Skip to content

Commit

Permalink
Fix list client
Browse files Browse the repository at this point in the history
  • Loading branch information
oeway committed Sep 10, 2024
1 parent c4d9391 commit 7197694
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_redis.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 7197694

Please sign in to comment.