add proto stuff

This commit is contained in:
Mikayla Maki 2022-10-02 18:01:37 -07:00
parent 5769cdc354
commit 52dbf2f9b8
13 changed files with 317 additions and 239 deletions

View file

@ -4794,7 +4794,8 @@ async fn test_random_collaboration(
},
)
.await
.unwrap();
.unwrap()
.user_id;
let mut available_guests = vec![
"guest-1".to_string(),
"guest-2".to_string(),
@ -4814,7 +4815,8 @@ async fn test_random_collaboration(
},
)
.await
.unwrap();
.unwrap()
.user_id;
assert_eq!(*username, format!("guest-{}", guest_user_id));
server
.app_state
@ -5337,6 +5339,7 @@ impl TestServer {
)
.await
.unwrap()
.user_id
};
let client_name = name.to_string();
let mut client = cx.read(|cx| Client::new(http.clone(), cx));