Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSascha Cunz <Sascha@BabbelBox.org>2012-09-21 02:57:21 +0400
committerSascha Cunz <Sascha@BabbelBox.org>2012-09-23 03:02:07 +0400
commit7604ddbf701b586b6f6160807cf32fca28398df1 (patch)
treea354fa3aad9a60c1563c726120ef093aafbfda28 /tests-clar/refs/list.c
parente800bbe80a37468234e4b7412da8e69dff17b5a5 (diff)
Tests: Add 3 tags to resources/testrepo.
Adjusts refs::list test (including the comments) Adjusts objects::tags::list test
Diffstat (limited to 'tests-clar/refs/list.c')
-rw-r--r--tests-clar/refs/list.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests-clar/refs/list.c b/tests-clar/refs/list.c
index 2daa3941e..3948b2b7a 100644
--- a/tests-clar/refs/list.c
+++ b/tests-clar/refs/list.c
@@ -33,10 +33,10 @@ void test_refs_list__all(void)
printf("# %s\n", ref_list.strings[i]);
}*/
- /* We have exactly 9 refs in total if we include the packed ones:
+ /* We have exactly 12 refs in total if we include the packed ones:
* there is a reference that exists both in the packfile and as
* loose, but we only list it once */
- cl_assert_equal_i((int)ref_list.count, 10);
+ cl_assert_equal_i((int)ref_list.count, 13);
git_strarray_free(&ref_list);
}
@@ -62,7 +62,7 @@ void test_refs_list__do_not_retrieve_references_which_name_end_with_a_lock_exten
"144344043ba4d4a405da03de3844aa829ae8be0e\n");
cl_git_pass(git_reference_list(&ref_list, g_repo, GIT_REF_LISTALL));
- cl_assert_equal_i((int)ref_list.count, 10);
+ cl_assert_equal_i((int)ref_list.count, 13);
git_strarray_free(&ref_list);
}