Skip to content

Commit

Permalink
Fix formatting with cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
EliahKagan committed Jun 26, 2024
1 parent 87422ab commit f964cb9
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions gix-worktree-state/tests/state/checkout.rs
Original file line number Diff line number Diff line change
Expand Up @@ -305,11 +305,18 @@ fn dangling_symlinks_can_be_created() -> crate::Result {

for (fixture, symlink_name, target_name) in [
("make_dangling_symlink", "dangling", "non-existing-target"),
("make_dangling_symlink_to_windows_invalid", "dangling-qmarks-symlink", "???"),
("make_dangling_symlink_to_windows_reserved", "dangling-con-symlink", "CON"),
(
"make_dangling_symlink_to_windows_invalid",
"dangling-qmarks-symlink",
"???",
),
(
"make_dangling_symlink_to_windows_reserved",
"dangling-con-symlink",
"CON",
),
] {
let (_source_tree, destination, _index, outcome) =
checkout_index_in_tmp_dir(opts.clone(), fixture, None)?;
let (_source_tree, destination, _index, outcome) = checkout_index_in_tmp_dir(opts.clone(), fixture, None)?;
let worktree_files = dir_structure(&destination);
let worktree_files_stripped = stripped_prefix(&destination, &worktree_files);

Expand Down

0 comments on commit f964cb9

Please sign in to comment.