summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornulltoken <emeric.fermas@gmail.com>2013-06-28 17:00:37 +0200
committernulltoken <emeric.fermas@gmail.com>2013-06-29 12:12:41 +0200
commitb6c3c347295a8da797b38926d0f947493ec01c4f (patch)
tree1ef9150ed9c43ea8bde9f6e2d97dd141dbe6de8c
parentf2c41884c3082984f51743d557644cfa2136b878 (diff)
downloadlibgit2-b6c3c347295a8da797b38926d0f947493ec01c4f.tar.gz
tests: Fix indentation
-rw-r--r--tests-clar/status/worktree.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/tests-clar/status/worktree.c b/tests-clar/status/worktree.c
index 920671e13..eef3b546e 100644
--- a/tests-clar/status/worktree.c
+++ b/tests-clar/status/worktree.c
@@ -675,30 +675,30 @@ void test_status_worktree__file_status_honors_core_ignorecase_false(void)
void test_status_worktree__file_status_honors_case_ignorecase_regarding_untracked_files(void)
{
- git_repository *repo = cl_git_sandbox_init("status");
- unsigned int status;
- git_index *index;
+ git_repository *repo = cl_git_sandbox_init("status");
+ unsigned int status;
+ git_index *index;
- cl_repo_set_bool(repo, "core.ignorecase", false);
+ cl_repo_set_bool(repo, "core.ignorecase", false);
repo = cl_git_sandbox_reopen();
- /* Actually returns GIT_STATUS_IGNORED on Windows */
- cl_git_fail_with(git_status_file(&status, repo, "NEW_FILE"), GIT_ENOTFOUND);
+ /* Actually returns GIT_STATUS_IGNORED on Windows */
+ cl_git_fail_with(git_status_file(&status, repo, "NEW_FILE"), GIT_ENOTFOUND);
- cl_git_pass(git_repository_index(&index, repo));
+ cl_git_pass(git_repository_index(&index, repo));
- cl_git_pass(git_index_add_bypath(index, "new_file"));
- cl_git_pass(git_index_write(index));
- git_index_free(index);
+ cl_git_pass(git_index_add_bypath(index, "new_file"));
+ cl_git_pass(git_index_write(index));
+ git_index_free(index);
- /* Actually returns GIT_STATUS_IGNORED on Windows */
- cl_git_fail_with(git_status_file(&status, repo, "NEW_FILE"), GIT_ENOTFOUND);
+ /* Actually returns GIT_STATUS_IGNORED on Windows */
+ cl_git_fail_with(git_status_file(&status, repo, "NEW_FILE"), GIT_ENOTFOUND);
}
void test_status_worktree__simple_delete(void)
{
- git_repository *repo = cl_git_sandbox_init("renames");
+ git_repository *repo = cl_git_sandbox_init("renames");
git_status_options opts = GIT_STATUS_OPTIONS_INIT;
int count;