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:
authorVicent Marti <vicent@github.com>2014-06-16 13:11:40 +0400
committerVicent Marti <vicent@github.com>2014-06-16 13:11:40 +0400
commit1589aa0c4d48fb130d8a5db28c45cd3d173cde6d (patch)
tree3518d1bf420e92c964bed03074575d8a1db88654
parente93206e0f5bd9a1f2ad17d0d566b1e815a762420 (diff)
parent09561d33e45274eca4ecec7cca785737ed7a4397 (diff)
Merge pull request #2425 from libgit2/cmn/clone-auth-changev0.21.0-rc2development
Don't use read-write accounts for the tests
-rw-r--r--tests/online/clone.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/tests/online/clone.c b/tests/online/clone.c
index 8a2a64f95..4f4312a8c 100644
--- a/tests/online/clone.c
+++ b/tests/online/clone.c
@@ -8,10 +8,9 @@
#define LIVE_REPO_URL "http://github.com/libgit2/TestGitRepository"
#define LIVE_EMPTYREPO_URL "http://github.com/libgit2/TestEmptyRepository"
-#define BB_REPO_URL "https://libgit2@bitbucket.org/libgit2/testgitrepository.git"
-#define BB_REPO_URL_WITH_PASS "https://libgit2:libgit2@bitbucket.org/libgit2/testgitrepository.git"
-#define BB_REPO_URL_WITH_WRONG_PASS "https://libgit2:wrong@bitbucket.org/libgit2/testgitrepository.git"
-#define ASSEMBLA_REPO_URL "https://libgit2:_Libgit2@git.assembla.com/libgit2-test-repos.git"
+#define BB_REPO_URL "https://libgit3@bitbucket.org/libgit2/testgitrepository.git"
+#define BB_REPO_URL_WITH_PASS "https://libgit3:libgit3@bitbucket.org/libgit2/testgitrepository.git"
+#define BB_REPO_URL_WITH_WRONG_PASS "https://libgit3:wrong@bitbucket.org/libgit2/testgitrepository.git"
static git_repository *g_repo;
static git_clone_options g_options;
@@ -290,11 +289,6 @@ void test_online_clone__bitbucket_style(void)
cl_fixture_cleanup("./foo");
}
-void test_online_clone__assembla_style(void)
-{
- cl_git_pass(git_clone(&g_repo, ASSEMBLA_REPO_URL, "./foo", NULL));
-}
-
static int cancel_at_half(const git_transfer_progress *stats, void *payload)
{
GIT_UNUSED(payload);