From 9223f2884cff6aea0a3781df054e30e1241218c4 Mon Sep 17 00:00:00 2001 From: Linquize Date: Mon, 27 Oct 2014 01:06:28 +0800 Subject: [PATCH] Fix test repo dir not deleted after running --- tests/network/fetchlocal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/network/fetchlocal.c b/tests/network/fetchlocal.c index eb9a1087a..965ca2dd5 100644 --- a/tests/network/fetchlocal.c +++ b/tests/network/fetchlocal.c @@ -135,6 +135,7 @@ void test_network_fetchlocal__multi_remotes(void) git_strarray refnames = {0}; git_remote_callbacks callbacks = GIT_REMOTE_CALLBACKS_INIT; + cl_set_cleanup(&cleanup_sandbox, NULL); callbacks.transfer_progress = transfer_cb; cl_git_pass(git_remote_load(&test, repo, "test")); cl_git_pass(git_remote_set_url(test, cl_git_fixture_url("testrepo.git"))); @@ -159,5 +160,4 @@ void test_network_fetchlocal__multi_remotes(void) git_strarray_free(&refnames); git_remote_free(test); git_remote_free(test2); - git_repository_free(repo); }