Fix warnings

This commit is contained in:
Antonio Scandurra 2022-12-05 19:45:56 +01:00
parent 9a62150dce
commit cd08d289aa

View file

@ -1031,8 +1031,10 @@ impl Workspace {
RemoveWorktreeFromProject(worktree_id): &RemoveWorktreeFromProject,
cx: &mut ViewContext<Self>,
) {
self.project
let future = self
.project
.update(cx, |project, cx| project.remove_worktree(*worktree_id, cx));
cx.foreground().spawn(future).detach();
}
fn project_path_for_path(
@ -2862,9 +2864,9 @@ mod tests {
);
// Remove a project folder
project.update(cx, |project, cx| {
project.remove_worktree(worktree_id, cx);
});
project
.update(cx, |project, cx| project.remove_worktree(worktree_id, cx))
.await;
assert_eq!(
cx.current_window_title(window_id).as_deref(),
Some("one.txt — root2")