Skip to content

Commit 691b8a8

Browse files
committed
Fix blocklist
1 parent d225858 commit 691b8a8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

stream_chat/tests/async_chat/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,7 @@ async def test_create_blocklist(self, client: StreamChatAsync):
726726

727727
async def test_list_blocklists(self, client: StreamChatAsync):
728728
response = await client.list_blocklists()
729-
assert len(response["blocklists"]) == 2
729+
assert len(response["blocklists"]) == 3
730730
blocklist_names = {blocklist["name"] for blocklist in response["blocklists"]}
731731
assert "Foo" in blocklist_names
732732

stream_chat/tests/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,7 @@ def test_create_blocklist(self, client: StreamChat):
718718

719719
def test_list_blocklists(self, client: StreamChat):
720720
response = client.list_blocklists()
721-
assert len(response["blocklists"]) == 2
721+
assert len(response["blocklists"]) == 3
722722
blocklist_names = {blocklist["name"] for blocklist in response["blocklists"]}
723723
assert "Foo" in blocklist_names
724724

0 commit comments

Comments
 (0)