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:
authornulltoken <emeric.fermas@gmail.com>2013-03-31 15:27:43 +0400
committernulltoken <emeric.fermas@gmail.com>2013-03-31 16:36:51 +0400
commit24cb87e2a68f550be9b9df8569796f8d491fed55 (patch)
tree7b350e5bb0da77c377c945b1c804243c24d0610b /tests-clar/refs
parent5a5bd640241f68387fe3403e29f3d31103b8c0fd (diff)
tag: Fix parsing when no tagger nor message
Diffstat (limited to 'tests-clar/refs')
-rw-r--r--tests-clar/refs/foreachglob.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests-clar/refs/foreachglob.c b/tests-clar/refs/foreachglob.c
index 88516ddce..4da1a15dd 100644
--- a/tests-clar/refs/foreachglob.c
+++ b/tests-clar/refs/foreachglob.c
@@ -48,8 +48,8 @@ static void assert_retrieval(const char *glob, unsigned int flags, int expected_
void test_refs_foreachglob__retrieve_all_refs(void)
{
- /* 8 heads (including one packed head) + 1 note + 2 remotes + 6 tags */
- assert_retrieval("*", GIT_REF_LISTALL, 21);
+ /* 12 heads (including one packed head) + 1 note + 2 remotes + 7 tags */
+ assert_retrieval("*", GIT_REF_LISTALL, 22);
}
void test_refs_foreachglob__retrieve_remote_branches(void)