summaryrefslogtreecommitdiff
path: root/tests/libgit2/grafts/shallow.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libgit2/grafts/shallow.c')
-rw-r--r--tests/libgit2/grafts/shallow.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/libgit2/grafts/shallow.c b/tests/libgit2/grafts/shallow.c
index 8c2723922..5911a26aa 100644
--- a/tests/libgit2/grafts/shallow.c
+++ b/tests/libgit2/grafts/shallow.c
@@ -7,25 +7,13 @@
static git_repository *g_repo;
static git_oid g_shallow_oid;
-void test_grafts_shallow__set_feature_flag(void)
-{
- cl_git_pass(git_libgit2_opts(GIT_OPT_ENABLE_SHALLOW, 1));
-}
-
-void test_grafts_shallow__unset_feature_flag(void)
-{
- cl_git_pass(git_libgit2_opts(GIT_OPT_ENABLE_SHALLOW, 0));
-}
-
void test_grafts_shallow__initialize(void)
{
- git_libgit2_opts(GIT_OPT_ENABLE_SHALLOW, 1);
cl_git_pass(git_oid__fromstr(&g_shallow_oid, "be3563ae3f795b2b4353bcce3a527ad0a4f7f644", GIT_OID_SHA1));
}
void test_grafts_shallow__cleanup(void)
{
- git_libgit2_opts(GIT_OPT_ENABLE_SHALLOW, 0);
cl_git_sandbox_cleanup();
}