We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d884a2 commit 29e8cc3Copy full SHA for 29e8cc3
1 file changed
integration_tests/web/test_admin_conversations.py
@@ -62,7 +62,13 @@ def test_sync(self):
62
channel_id=created_channel_id,
63
name=self.channel_rename,
64
))
65
- self.assertIsNotNone(client.admin_conversations_search())
+ search_result = client.admin_conversations_search(
66
+ limit=1,
67
+ sort="member_count",
68
+ sort_dir="desc",
69
+ )
70
+ self.assertIsNotNone(search_result.data["next_cursor"])
71
+ self.assertIsNotNone(search_result.data["conversations"])
72
73
self.assertIsNotNone(client.admin_conversations_getConversationPrefs(
74
0 commit comments