Skip to content

Commit 6029725

Browse files
committed
tests: worktree::refs: convert spaces to tabs
1 parent caf7a7a commit 6029725

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

tests/worktree/refs.c

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -107,28 +107,28 @@ void test_worktree_refs__set_head_fails_when_already_checked_out(void)
107107

108108
void 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

119119
void 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

134134
void test_worktree_refs__creating_refs_uses_commondir(void)

0 commit comments

Comments
 (0)