mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-06 02:37:21 +00:00
Attempting to debug on ci...
This commit is contained in:
parent
572d40381a
commit
5f143f689f
1 changed files with 5 additions and 2 deletions
|
@ -5407,6 +5407,8 @@ mod tests {
|
|||
],
|
||||
);
|
||||
|
||||
panic!();
|
||||
|
||||
check_propagated_statuses(
|
||||
&snapshot,
|
||||
&[
|
||||
|
@ -5443,11 +5445,12 @@ mod tests {
|
|||
.map(|(path, _)| snapshot.entry_for_path(path).unwrap().clone())
|
||||
.collect::<Vec<_>>();
|
||||
snapshot.propagate_git_statuses(&mut entries);
|
||||
dbg!(&entries);
|
||||
assert_eq!(
|
||||
entries
|
||||
dbg!(entries
|
||||
.iter()
|
||||
.map(|e| (e.path.as_ref(), e.git_status))
|
||||
.collect::<Vec<_>>(),
|
||||
.collect::<Vec<_>>()),
|
||||
expected_statuses
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue