summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornulltoken <emeric.fermas@gmail.com>2013-06-28 17:04:27 +0200
committernulltoken <emeric.fermas@gmail.com>2013-06-29 12:12:52 +0200
commit1ec680b84354b9fa9691f7ca65771df11845152c (patch)
tree7cc9293f02c262dfd3140824cc302c6e373fd944
parentb6c3c347295a8da797b38926d0f947493ec01c4f (diff)
downloadlibgit2-1ec680b84354b9fa9691f7ca65771df11845152c.tar.gz
tests: Remove misleading comments
-rw-r--r--tests-clar/status/worktree.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests-clar/status/worktree.c b/tests-clar/status/worktree.c
index eef3b546e..c8940ff83 100644
--- a/tests-clar/status/worktree.c
+++ b/tests-clar/status/worktree.c
@@ -683,7 +683,6 @@ void test_status_worktree__file_status_honors_case_ignorecase_regarding_untracke
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);
cl_git_pass(git_repository_index(&index, repo));
@@ -692,7 +691,6 @@ void test_status_worktree__file_status_honors_case_ignorecase_regarding_untracke
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);
}