@@ -675,30 +675,30 @@ void test_status_worktree__file_status_honors_core_ignorecase_false(void)
675
675
676
676
void test_status_worktree__file_status_honors_case_ignorecase_regarding_untracked_files (void )
677
677
{
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 ;
681
681
682
- cl_repo_set_bool (repo , "core.ignorecase" , false);
682
+ cl_repo_set_bool (repo , "core.ignorecase" , false);
683
683
684
684
repo = cl_git_sandbox_reopen ();
685
685
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 );
688
688
689
- cl_git_pass (git_repository_index (& index , repo ));
689
+ cl_git_pass (git_repository_index (& index , repo ));
690
690
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 );
694
694
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 );
697
697
}
698
698
699
699
void test_status_worktree__simple_delete (void )
700
700
{
701
- git_repository * repo = cl_git_sandbox_init ("renames" );
701
+ git_repository * repo = cl_git_sandbox_init ("renames" );
702
702
git_status_options opts = GIT_STATUS_OPTIONS_INIT ;
703
703
int count ;
704
704
0 commit comments