summaryrefslogtreecommitdiff
path: root/tests/repo
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2015-02-12 02:34:58 +0100
committerCarlos Martín Nieto <cmn@dwim.me>2015-02-12 02:34:58 +0100
commitd24a5312d8ab6d3cdb259e450ec9f1e2e6f3399d (patch)
tree6bdb4b732e9c14560dcf941bf1cc6a1344e169a3 /tests/repo
parent8e29ae7310a731e3a4dc8f952ae2245f83960673 (diff)
parentfa89ff20cd777fafc3e971bbf8081d97ce082c15 (diff)
downloadlibgit2-d24a5312d8ab6d3cdb259e450ec9f1e2e6f3399d.tar.gz
Merge pull request #2866 from ethomson/checkout_perf2
Checkout performance
Diffstat (limited to 'tests/repo')
-rw-r--r--tests/repo/iterator.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/repo/iterator.c b/tests/repo/iterator.c
index a1aa4b2c7..26e8954fe 100644
--- a/tests/repo/iterator.c
+++ b/tests/repo/iterator.c
@@ -906,6 +906,7 @@ void test_repo_iterator__fs2(void)
static const char *expect_base[] = {
"heads/br2",
"heads/dir",
+ "heads/ident",
"heads/long-file-name",
"heads/master",
"heads/packed-test",
@@ -923,7 +924,7 @@ void test_repo_iterator__fs2(void)
cl_git_pass(git_iterator_for_filesystem(
&i, "testrepo/.git/refs", 0, NULL, NULL));
- expect_iterator_items(i, 12, expect_base, 12, expect_base);
+ expect_iterator_items(i, 13, expect_base, 13, expect_base);
git_iterator_free(i);
}