diff options
author | Patrick Steinhardt <ps@pks.im> | 2015-11-11 10:54:08 +0100 |
---|---|---|
committer | Patrick Steinhardt <ps@pks.im> | 2017-02-13 10:13:02 +0100 |
commit | bd9f4fd24cd9f011dc5105d6f24ea90dfdf4f1b3 (patch) | |
tree | 0fb6fddbaba6d3749d31e2f7c3daca20172385ab /tests/refs | |
parent | b0c3fa36c13e2ba76d4e6d16afbda62ebcfd5624 (diff) | |
download | libgit2-bd9f4fd24cd9f011dc5105d6f24ea90dfdf4f1b3.tar.gz |
tests: add worktree test data
Diffstat (limited to 'tests/refs')
-rw-r--r-- | tests/refs/list.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/refs/list.c b/tests/refs/list.c index 374943b05..b4101ba7a 100644 --- a/tests/refs/list.c +++ b/tests/refs/list.c @@ -36,7 +36,7 @@ void test_refs_list__all(void) /* 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, 15); + cl_assert_equal_i((int)ref_list.count, 16); git_strarray_free(&ref_list); } @@ -51,7 +51,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)); - cl_assert_equal_i((int)ref_list.count, 15); + cl_assert_equal_i((int)ref_list.count, 16); git_strarray_free(&ref_list); } |