Skip to content

Commit 2c86326

Browse files
committed
fix(zed): attempt to fix failing test on windows
1 parent c757004 commit 2c86326

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

crates/zed/src/zed.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5118,12 +5118,7 @@ mod tests {
51185118
let pane = workspace.active_pane().read(cx);
51195119
let project_path = pane.active_item().unwrap().project_path(cx).unwrap();
51205120

5121-
assert!(
5122-
project_path
5123-
.path
5124-
.as_ref()
5125-
.ends_with(rel_path("document.txt"))
5126-
)
5121+
assert_eq!(project_path.path.as_ref(), rel_path("document.txt"))
51275122
});
51285123
}
51295124
}

0 commit comments

Comments
 (0)