Backport more test data

This commit is contained in:
Vicent Martí 2012-05-02 16:33:26 -07:00
parent 8c83fead91
commit a1d0802576
67 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ void test_object_tree_read__two(void)
cl_assert(obj != NULL); cl_assert(obj != NULL);
git_object_free(obj); git_object_free(obj);
obj = NULL; obj = NULL;
cl_assert(git_object_lookup(&obj, g_repo, &id, GIT_OBJ_BLOB) == GIT_EINVALIDTYPE); cl_git_fail(git_object_lookup(&obj, g_repo, &id, GIT_OBJ_BLOB));
cl_assert(obj == NULL); cl_assert(obj == NULL);
entry = git_tree_entry_byname(tree, "README"); entry = git_tree_entry_byname(tree, "README");