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-16 02:56:20 +0400
committerBen Straub <bs@github.com>2012-12-16 02:56:20 +0400
commita7f125cdba0fe00c7df39e124e104fd030718350 (patch)
tree0aaf544c75da6ef74db88a04e7bad6b15d283464 /tests-clar/fetchhead
parent2a2d1ab0867a43fe9a206c20d3d34bab57a2fb06 (diff)
Fix fetchhead tests
Diffstat (limited to 'tests-clar/fetchhead')
-rw-r--r--tests-clar/fetchhead/network.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests-clar/fetchhead/network.c b/tests-clar/fetchhead/network.c
index d10c891c6..dc223e2aa 100644
--- a/tests-clar/fetchhead/network.c
+++ b/tests-clar/fetchhead/network.c
@@ -63,8 +63,7 @@ static void fetchhead_test_fetch(const char *fetchspec, const char *expected_fet
git_remote_disconnect(remote);
git_remote_free(remote);
- cl_git_pass(git_futils_readbuffer(&fetchhead_buf,
- "./test1/.git/FETCH_HEAD"));
+ cl_git_pass(git_futils_readbuffer(&fetchhead_buf, "./foo/.git/FETCH_HEAD"));
equals = (strcmp(fetchhead_buf.ptr, expected_fetchhead) == 0);