Commit eca67c58 by Carlos Martín Nieto

tests: fix git_odb_foreach() object count

Some objects were added in another PR
parent 1ebe432e
...@@ -32,5 +32,5 @@ static int foreach_cb(git_oid *oid, void *data) ...@@ -32,5 +32,5 @@ static int foreach_cb(git_oid *oid, void *data)
void test_odb_foreach__foreach(void) void test_odb_foreach__foreach(void)
{ {
cl_git_pass(git_odb_foreach(_odb, foreach_cb, NULL)); cl_git_pass(git_odb_foreach(_odb, foreach_cb, NULL));
cl_assert(nobj == 1681); cl_assert(nobj == 1683);
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment