summaryrefslogtreecommitdiff
path: root/tests-clar/refs
diff options
context:
space:
mode:
authorBen Straub <bstraub@github.com>2012-07-27 20:36:12 -0700
committerBen Straub <bstraub@github.com>2012-07-27 20:36:12 -0700
commit32beb2ecfe5b09acf0640b5f6ccfc1d035cc2142 (patch)
tree5695c5261869f2c8811f9eae60d613dce0f04409 /tests-clar/refs
parentb31667fb695dab0510cc5fc259e0569ff2a2ef41 (diff)
downloadlibgit2-32beb2ecfe5b09acf0640b5f6ccfc1d035cc2142.tar.gz
Fix testrepo ref count to include new branch.
Diffstat (limited to 'tests-clar/refs')
-rw-r--r--tests-clar/refs/list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests-clar/refs/list.c b/tests-clar/refs/list.c
index 2a7b157ca..ac3cc0058 100644
--- a/tests-clar/refs/list.c
+++ b/tests-clar/refs/list.c
@@ -36,7 +36,7 @@ void test_refs_list__all(void)
/* We have exactly 9 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(ref_list.count == 9);
+ cl_assert_equal_i(ref_list.count, 10);
git_strarray_free(&ref_list);
}