Skip to content

Commit abbcef1

Browse files
committed
Fix format
1 parent 6f738a8 commit abbcef1

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

gix/tests/clone/mod.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -519,12 +519,15 @@ mod blocking_io {
519519
)?;
520520
let (mut checkout, _out) =
521521
prepare.fetch_then_checkout(gix::progress::Discard, &std::sync::atomic::AtomicBool::default())?;
522-
522+
523523
let branch_names = checkout.repo().branch_names();
524524
let target_branch: &BStr = "a".into();
525525
let branch_result = checkout.repo().find_reference(target_branch);
526526

527-
assert!(branch_result.is_ok(), "branch {target_branch} not found: {branch_result:?}. Available branches: {branch_names:?}");
527+
assert!(
528+
branch_result.is_ok(),
529+
"branch {target_branch} not found: {branch_result:?}. Available branches: {branch_names:?}"
530+
);
528531
let (repo, _) = checkout.worktree(
529532
gix::progress::Discard,
530533
&std::sync::atomic::AtomicBool::default(),

0 commit comments

Comments
 (0)