Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b6c3c34

Browse files
committed
tests: Fix indentation
1 parent f2c4188 commit b6c3c34

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

tests-clar/status/worktree.c

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -675,30 +675,30 @@ void test_status_worktree__file_status_honors_core_ignorecase_false(void)
675675

676676
void test_status_worktree__file_status_honors_case_ignorecase_regarding_untracked_files(void)
677677
{
678-
git_repository *repo = cl_git_sandbox_init("status");
679-
unsigned int status;
680-
git_index *index;
678+
git_repository *repo = cl_git_sandbox_init("status");
679+
unsigned int status;
680+
git_index *index;
681681

682-
cl_repo_set_bool(repo, "core.ignorecase", false);
682+
cl_repo_set_bool(repo, "core.ignorecase", false);
683683

684684
repo = cl_git_sandbox_reopen();
685685

686-
/* Actually returns GIT_STATUS_IGNORED on Windows */
687-
cl_git_fail_with(git_status_file(&status, repo, "NEW_FILE"), GIT_ENOTFOUND);
686+
/* Actually returns GIT_STATUS_IGNORED on Windows */
687+
cl_git_fail_with(git_status_file(&status, repo, "NEW_FILE"), GIT_ENOTFOUND);
688688

689-
cl_git_pass(git_repository_index(&index, repo));
689+
cl_git_pass(git_repository_index(&index, repo));
690690

691-
cl_git_pass(git_index_add_bypath(index, "new_file"));
692-
cl_git_pass(git_index_write(index));
693-
git_index_free(index);
691+
cl_git_pass(git_index_add_bypath(index, "new_file"));
692+
cl_git_pass(git_index_write(index));
693+
git_index_free(index);
694694

695-
/* Actually returns GIT_STATUS_IGNORED on Windows */
696-
cl_git_fail_with(git_status_file(&status, repo, "NEW_FILE"), GIT_ENOTFOUND);
695+
/* Actually returns GIT_STATUS_IGNORED on Windows */
696+
cl_git_fail_with(git_status_file(&status, repo, "NEW_FILE"), GIT_ENOTFOUND);
697697
}
698698

699699
void test_status_worktree__simple_delete(void)
700700
{
701-
git_repository *repo = cl_git_sandbox_init("renames");
701+
git_repository *repo = cl_git_sandbox_init("renames");
702702
git_status_options opts = GIT_STATUS_OPTIONS_INIT;
703703
int count;
704704

0 commit comments

Comments
 (0)