From df285def59c816fb7966ba05a50744d8aee48789 Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Mon, 26 Sep 2022 12:02:54 +0200 Subject: [PATCH] :lipstick: --- crates/collab/src/integration_tests.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/crates/collab/src/integration_tests.rs b/crates/collab/src/integration_tests.rs index 550a13a2a9cbc5a21ceb1181a92eb92e6b571eec..24326181991c96361d1dcc834642b337f36c2a66 100644 --- a/crates/collab/src/integration_tests.rs +++ b/crates/collab/src/integration_tests.rs @@ -74,7 +74,11 @@ async fn test_share_project_in_room( let client_b = server.create_client(cx_b, "user_b").await; let client_c = server.create_client(cx_c, "user_c").await; server - .make_contacts(vec![(&client_a, cx_a), (&client_b, cx_b), (&client_c, cx_c)]) + .make_contacts(vec![ + (&client_a, cx_a), + (&client_b, cx_b), + (&client_c, cx_c), + ]) .await; client_a @@ -166,8 +170,8 @@ async fn test_share_project_in_room( pending: vec!["user_c".to_string()] } ); - let _call_c = incoming_call_c.next().await.unwrap().unwrap(); + let _call_c = incoming_call_c.next().await.unwrap().unwrap(); client_c .user_store .update(cx_c, |user, _| user.decline_call())