File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff 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 ( ) ,
You can’t perform that action at this time.
0 commit comments