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:
authorPatrick Steinhardt <ps@pks.im>2015-11-11 12:54:08 +0300
committerPatrick Steinhardt <ps@pks.im>2017-02-13 12:13:02 +0300
commitbd9f4fd24cd9f011dc5105d6f24ea90dfdf4f1b3 (patch)
tree0fb6fddbaba6d3749d31e2f7c3daca20172385ab /tests/iterator
parentb0c3fa36c13e2ba76d4e6d16afbda62ebcfd5624 (diff)
tests: add worktree test data
Diffstat (limited to 'tests/iterator')
-rw-r--r--tests/iterator/workdir.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/iterator/workdir.c b/tests/iterator/workdir.c
index 28fcc0d23..165cca5ed 100644
--- a/tests/iterator/workdir.c
+++ b/tests/iterator/workdir.c
@@ -616,6 +616,7 @@ void test_iterator_workdir__filesystem2(void)
"heads/packed-test",
"heads/subtrees",
"heads/test",
+ "heads/testrepo-worktree",
"tags/e90810b",
"tags/foo/bar",
"tags/foo/foo/bar",
@@ -628,7 +629,7 @@ void test_iterator_workdir__filesystem2(void)
cl_git_pass(git_iterator_for_filesystem(
&i, "testrepo/.git/refs", NULL));
- expect_iterator_items(i, 13, expect_base, 13, expect_base);
+ expect_iterator_items(i, 14, expect_base, 14, expect_base);
git_iterator_free(i);
}