Commit eca67c585e555d7999e436fda3f1d8d1ebda2329

Carlos Martín Nieto 2012-07-12T20:40:09

tests: fix git_odb_foreach() object count Some objects were added in another PR

1
2
3
4
5
6
7
8
9
10
11
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);
 }