From: Derrick Stolee Date: Mon, 20 Aug 2018 18:24:24 +0000 (+0000) Subject: test-repository: properly init repo X-Git-Tag: v2.19.2~53^2~4 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/b7758963424e238b9152f0c9991325ff7fdffff1 test-repository: properly init repo Signed-off-by: Derrick Stolee Signed-off-by: Junio C Hamano --- diff --git a/t/helper/test-repository.c b/t/helper/test-repository.c index 2762ca6562..6a84a53efb 100644 --- a/t/helper/test-repository.c +++ b/t/helper/test-repository.c @@ -15,7 +15,10 @@ static void test_parse_commit_in_graph(const char *gitdir, const char *worktree, struct commit *c; struct commit_list *parent; - repo_init(&r, gitdir, worktree); + setup_git_env(gitdir); + + if (repo_init(&r, gitdir, worktree)) + die("Couldn't init repo"); c = lookup_commit(&r, commit_oid); @@ -38,7 +41,10 @@ static void test_get_commit_tree_in_graph(const char *gitdir, struct commit *c; struct tree *tree; - repo_init(&r, gitdir, worktree); + setup_git_env(gitdir); + + if (repo_init(&r, gitdir, worktree)) + die("Couldn't init repo"); c = lookup_commit(&r, commit_oid);