tests: fix git_odb_foreach() object count Some objects were added in another PR
diff --git a/tests-clar/odb/foreach.c b/tests-clar/odb/foreach.c
index 6cb4faa..525c70c 100644
--- a/tests-clar/odb/foreach.c
+++ b/tests-clar/odb/foreach.c
@@ -32,5 +32,5 @@ static int foreach_cb(git_oid *oid, void *data)
void test_odb_foreach__foreach(void)
{
cl_git_pass(git_odb_foreach(_odb, foreach_cb, NULL));
- cl_assert(nobj == 1681);
+ cl_assert(nobj == 1683);
}