diff options
| author | Vicent Martà <tanoku@gmail.com> | 2012-05-18 01:21:06 +0200 | 
|---|---|---|
| committer | Vicent Martà <tanoku@gmail.com> | 2012-05-18 01:26:26 +0200 | 
| commit | e172cf082e62aa421703080d0bccb7b8762c8bd4 (patch) | |
| tree | c19f7b1be056a9176d4e865f5be5c69a5c2912c6 /tests-clar/notes/notes.c | |
| parent | 2e2e97858de18abd43f7e59fcc6151510c6d3272 (diff) | |
| download | libgit2-e172cf082e62aa421703080d0bccb7b8762c8bd4.tar.gz | |
errors: Rename the generic return codes
Diffstat (limited to 'tests-clar/notes/notes.c')
| -rw-r--r-- | tests-clar/notes/notes.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/tests-clar/notes/notes.c b/tests-clar/notes/notes.c index 5185f25ea..c23a9f0f9 100644 --- a/tests-clar/notes/notes.c +++ b/tests-clar/notes/notes.c @@ -127,7 +127,7 @@ void test_notes_notes__retrieving_a_list_of_notes_for_an_unknown_namespace_retur  	error = git_note_foreach(_repo, "refs/notes/i-am-not", note_list_cb, &retrieved_notes);  	cl_git_fail(error); -	cl_assert_equal_i(GIT_ENOTFOUND, error); +	cl_assert_equal_i(GIT_NOTFOUND, error);  	cl_assert_equal_i(0, retrieved_notes);  }  | 
