summaryrefslogtreecommitdiff
path: root/tests/refs
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2018-02-20 00:32:38 +0000
committerEdward Thomson <ethomson@edwardthomson.com>2018-02-23 16:54:39 -0800
commit18d9c8479f8534cc19765345560d2d39b8920a4d (patch)
tree411ec51fe2215bab8fabc3bad73a32d6bb64ab45 /tests/refs
parent809b0ca6b9b6a5648b8e802a9f0c6a0821257595 (diff)
downloadlibgit2-18d9c8479f8534cc19765345560d2d39b8920a4d.tar.gz
testrepo: add new branch
Add a new branch to the `testrepo` repository, where the `README` file has changed to executable. This branch enables typechange tests between the new `executable` branch and `master`.
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 f7ca3f707..97461fd69 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, 17);
+ cl_assert_equal_i((int)ref_list.count, 18);
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, 17);
+ cl_assert_equal_i((int)ref_list.count, 18);
git_strarray_free(&ref_list);
}