Skip to content

Commit

Permalink
trigger CI
Browse files Browse the repository at this point in the history
  • Loading branch information
JunkuiZhang committed Jan 22, 2025
1 parent 6047802 commit 84f2c70
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions crates/zed/src/zed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2096,7 +2096,7 @@ mod tests {
.fs
.as_fake()
.insert_tree(
"/root",
add_root_for_windows("/root"),
json!({
"a": {
"file1": "contents 1",
Expand All @@ -2107,7 +2107,12 @@ mod tests {
)
.await;

let project = Project::test(app_state.fs.clone(), ["/root".as_ref()], cx).await;
let project = Project::test(
app_state.fs.clone(),
[add_root_for_windows("/root").as_ref()],
cx,
)
.await;
project.update(cx, |project, _cx| {
project.languages().add(markdown_language())
});
Expand Down

0 comments on commit 84f2c70

Please sign in to comment.