From b6c3c347295a8da797b38926d0f947493ec01c4f Mon Sep 17 00:00:00 2001 From: nulltoken Date: Fri, 28 Jun 2013 17:00:37 +0200 Subject: tests: Fix indentation --- tests-clar/status/worktree.c | 26 +++++++++++++------------- 1 file 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; -- cgit v1.2.1