diff options
author | Marek Šuppa <mr@shu.io> | 2013-12-31 11:27:32 +0100 |
---|---|---|
committer | Marek Šuppa <mr@shu.io> | 2013-12-31 11:27:32 +0100 |
commit | f38cb9815fde36843a945bfac115122c43b610a5 (patch) | |
tree | df5ec5145736f66954b3ad28f16726ce819dc514 | |
parent | 868563cc925c3be5be569a130289abbf1ccd4943 (diff) | |
download | libgit2-f38cb9815fde36843a945bfac115122c43b610a5.tar.gz |
Updated fetch.c test to pass.
I am not sure why there was 6 in the first place.
-rw-r--r-- | tests/online/fetch.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/online/fetch.c b/tests/online/fetch.c index 7e9dfdbbe..8f71cf3f5 100644 --- a/tests/online/fetch.c +++ b/tests/online/fetch.c @@ -58,17 +58,17 @@ static void do_fetch(const char *url, git_remote_autotag_option_t flag, int n) void test_online_fetch__default_git(void) { - do_fetch("git://github.com/libgit2/TestGitRepository.git", GIT_REMOTE_DOWNLOAD_TAGS_AUTO, 6); + do_fetch("git://github.com/libgit2/TestGitRepository.git", GIT_REMOTE_DOWNLOAD_TAGS_AUTO, 5); } void test_online_fetch__default_http(void) { - do_fetch("http://github.com/libgit2/TestGitRepository.git", GIT_REMOTE_DOWNLOAD_TAGS_AUTO, 6); + do_fetch("http://github.com/libgit2/TestGitRepository.git", GIT_REMOTE_DOWNLOAD_TAGS_AUTO, 5); } void test_online_fetch__default_https(void) { - do_fetch("https://github.com/libgit2/TestGitRepository.git", GIT_REMOTE_DOWNLOAD_TAGS_AUTO, 6); + do_fetch("https://github.com/libgit2/TestGitRepository.git", GIT_REMOTE_DOWNLOAD_TAGS_AUTO, 5); } void test_online_fetch__no_tags_git(void) |