Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Belfer <rb@github.com>2013-09-14 00:41:33 +0400
committerRussell Belfer <rb@github.com>2013-09-17 20:31:46 +0400
commitfa9cc14880cb50ea626c4bb0fcf1b68acdd73186 (patch)
treee63e43e1db4d7180adeb9ab68dbf836e3e665f55 /tests-clar/revwalk
parent8427757f78b1f0b018b1ccfe424a4c39e89ea024 (diff)
Fix cleanup issues with new tests
Diffstat (limited to 'tests-clar/revwalk')
-rw-r--r--tests-clar/revwalk/simplify.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests-clar/revwalk/simplify.c b/tests-clar/revwalk/simplify.c
index c94952105..81c19d366 100644
--- a/tests-clar/revwalk/simplify.c
+++ b/tests-clar/revwalk/simplify.c
@@ -1,5 +1,10 @@
#include "clar_libgit2.h"
+void test_revwalk_simplify__cleanup(void)
+{
+ cl_git_sandbox_cleanup();
+}
+
/*
* a4a7dce [0] Merge branch 'master' into br2
|\
@@ -47,5 +52,4 @@ void test_revwalk_simplify__first_parent(void)
cl_assert_equal_i(error, GIT_ITEROVER);
git_revwalk_free(walk);
- git_repository_free(repo);
}