This commit is contained in:
Mikayla 2023-09-15 11:19:40 -07:00
parent 16707d16f6
commit f9fff3a7b2
No known key found for this signature in database
8 changed files with 166 additions and 148 deletions

View file

@ -592,16 +592,10 @@ impl TestClient {
) {
let (other_client, other_cx) = user;
self
.app_state
self.app_state
.channel_store
.update(cx_self, |channel_store, cx| {
channel_store.invite_member(
channel,
other_client.user_id().unwrap(),
true,
cx,
)
channel_store.invite_member(channel, other_client.user_id().unwrap(), true, cx)
})
.await
.unwrap();
@ -616,7 +610,6 @@ impl TestClient {
})
.await
.unwrap();
}
}