mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-27 10:59:53 +00:00
Fix mismatched client/context in integration test
This commit is contained in:
parent
8d46edd26c
commit
8f676e76b3
1 changed files with 1 additions and 1 deletions
|
@ -3194,7 +3194,7 @@ async fn test_contacts(
|
|||
// Add a local project as client B
|
||||
let fs = FakeFs::new(cx_b.background());
|
||||
fs.create_dir(Path::new("/b")).await.unwrap();
|
||||
let (_project_b, _) = client_b.build_local_project(fs, "/b", cx_a).await;
|
||||
let (_project_b, _) = client_b.build_local_project(fs, "/b", cx_b).await;
|
||||
|
||||
deterministic.run_until_parked();
|
||||
for (client, cx) in [(&client_a, &cx_a), (&client_b, &cx_b), (&client_c, &cx_c)] {
|
||||
|
|
Loading…
Reference in a new issue