tests: fix git_odb_foreach() object count

Some objects were added in another PR
This commit is contained in:
Carlos Martín Nieto 2012-07-12 20:40:09 +02:00
parent 1ebe432e2f
commit eca67c585e

View File

@ -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);
}