summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEtienne Samson <samson.etienne@gmail.com>2019-01-14 01:25:05 +0100
committerEtienne Samson <samson.etienne@gmail.com>2019-01-14 01:25:05 +0100
commit54ae052859a63058e41b925bfa028c1d66343c4b (patch)
tree3c9b8f526636354ac1edd7861a90f7bbcef1cccc
parent1b4ba8443fe3029b7fbebce67d231cc4dd62be88 (diff)
downloadlibgit2-54ae052859a63058e41b925bfa028c1d66343c4b.tar.gz
tests: fix test expectation mismatch
-rw-r--r--tests/iterator/workdir.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/iterator/workdir.c b/tests/iterator/workdir.c
index 889fcd6c0..87ac1e5d4 100644
--- a/tests/iterator/workdir.c
+++ b/tests/iterator/workdir.c
@@ -661,10 +661,10 @@ void test_iterator_workdir__filesystem_gunk(void)
cl_git_pass(git_iterator_for_filesystem(&i, "testrepo/.git/refs", NULL));
- /* should only have 13 items, since we're not asking for trees to be
+ /* should only have 16 items, since we're not asking for trees to be
* returned. the goal of this test is simply to not crash.
*/
- expect_iterator_items(i, 15, NULL, 15, NULL);
+ expect_iterator_items(i, 16, NULL, 15, NULL);
git_iterator_free(i);
git_buf_dispose(&parent);
}