Skip to content

Commit f964cb9

Browse files
committed
Fix formatting with cargo fmt
1 parent 87422ab commit f964cb9

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

gix-worktree-state/tests/state/checkout.rs

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -305,11 +305,18 @@ fn dangling_symlinks_can_be_created() -> crate::Result {
305305

306306
for (fixture, symlink_name, target_name) in [
307307
("make_dangling_symlink", "dangling", "non-existing-target"),
308-
("make_dangling_symlink_to_windows_invalid", "dangling-qmarks-symlink", "???"),
309-
("make_dangling_symlink_to_windows_reserved", "dangling-con-symlink", "CON"),
308+
(
309+
"make_dangling_symlink_to_windows_invalid",
310+
"dangling-qmarks-symlink",
311+
"???",
312+
),
313+
(
314+
"make_dangling_symlink_to_windows_reserved",
315+
"dangling-con-symlink",
316+
"CON",
317+
),
310318
] {
311-
let (_source_tree, destination, _index, outcome) =
312-
checkout_index_in_tmp_dir(opts.clone(), fixture, None)?;
319+
let (_source_tree, destination, _index, outcome) = checkout_index_in_tmp_dir(opts.clone(), fixture, None)?;
313320
let worktree_files = dir_structure(&destination);
314321
let worktree_files_stripped = stripped_prefix(&destination, &worktree_files);
315322

0 commit comments

Comments
 (0)