@@ -107,28 +107,28 @@ void test_worktree_refs__set_head_fails_when_already_checked_out(void)
107107
108108void test_worktree_refs__delete_fails_for_checked_out_branch (void )
109109{
110- git_reference * branch ;
110+ git_reference * branch ;
111111
112- cl_git_pass (git_branch_lookup (& branch , fixture .repo ,
113- "testrepo-worktree" , GIT_BRANCH_LOCAL ));
114- cl_git_fail (git_branch_delete (branch ));
112+ cl_git_pass (git_branch_lookup (& branch , fixture .repo ,
113+ "testrepo-worktree" , GIT_BRANCH_LOCAL ));
114+ cl_git_fail (git_branch_delete (branch ));
115115
116- git_reference_free (branch );
116+ git_reference_free (branch );
117117}
118118
119119void test_worktree_refs__delete_succeeds_after_pruning_worktree (void )
120120{
121- git_reference * branch ;
122- git_worktree * worktree ;
121+ git_reference * branch ;
122+ git_worktree * worktree ;
123123
124- cl_git_pass (git_worktree_lookup (& worktree , fixture .repo , fixture .worktreename ));
125- cl_git_pass (git_worktree_prune (worktree , GIT_WORKTREE_PRUNE_VALID ));
126- git_worktree_free (worktree );
124+ cl_git_pass (git_worktree_lookup (& worktree , fixture .repo , fixture .worktreename ));
125+ cl_git_pass (git_worktree_prune (worktree , GIT_WORKTREE_PRUNE_VALID ));
126+ git_worktree_free (worktree );
127127
128- cl_git_pass (git_branch_lookup (& branch , fixture .repo ,
129- "testrepo-worktree" , GIT_BRANCH_LOCAL ));
130- cl_git_pass (git_branch_delete (branch ));
131- git_reference_free (branch );
128+ cl_git_pass (git_branch_lookup (& branch , fixture .repo ,
129+ "testrepo-worktree" , GIT_BRANCH_LOCAL ));
130+ cl_git_pass (git_branch_delete (branch ));
131+ git_reference_free (branch );
132132}
133133
134134void test_worktree_refs__creating_refs_uses_commondir (void )
0 commit comments