summaryrefslogtreecommitdiff
path: root/tests/refs
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2015-11-11 10:54:08 +0100
committerPatrick Steinhardt <ps@pks.im>2017-02-13 10:13:02 +0100
commitbd9f4fd24cd9f011dc5105d6f24ea90dfdf4f1b3 (patch)
tree0fb6fddbaba6d3749d31e2f7c3daca20172385ab /tests/refs
parentb0c3fa36c13e2ba76d4e6d16afbda62ebcfd5624 (diff)
downloadlibgit2-bd9f4fd24cd9f011dc5105d6f24ea90dfdf4f1b3.tar.gz
tests: add worktree test data
Diffstat (limited to 'tests/refs')
-rw-r--r--tests/refs/list.c4
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);
}