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:
authorBen Straub <bs@github.com>2012-12-13 20:47:29 +0400
committerBen Straub <bs@github.com>2012-12-13 20:47:29 +0400
commit7c353afd0e9da7b7ec55c3c421f03ea17fe266e5 (patch)
treefb2f734fce9dd6a40170e4289b37896508a1ffe1 /tests-clar/fetchhead
parent44f36f6e3ba40420d0a8bb2977e6ada2b735bc2b (diff)
Define constant for default fetch spec
Diffstat (limited to 'tests-clar/fetchhead')
-rw-r--r--tests-clar/fetchhead/network.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests-clar/fetchhead/network.c b/tests-clar/fetchhead/network.c
index 0eeac9ed2..aed5b5ad8 100644
--- a/tests-clar/fetchhead/network.c
+++ b/tests-clar/fetchhead/network.c
@@ -15,7 +15,7 @@ static git_remote *g_origin;
void test_fetchhead_network__initialize(void)
{
g_repo = NULL;
- cl_git_pass(git_remote_new(&g_origin, NULL, "origin", LIVE_REPO_URL, ""));
+ cl_git_pass(git_remote_new(&g_origin, NULL, "origin", LIVE_REPO_URL, GIT_REMOTE_DEFAULT_FETCH));
}
void test_fetchhead_network__cleanup(void)