Commit 62b801388025488beee42c665d3470dadc2ce257

Ian Hattendorf 2019-08-13T09:10:10

clone: Remove whitespace ssh test Will add later when infrastructure is configured

diff --git a/tests/online/clone.c b/tests/online/clone.c
index 55ab30c..3f8ee7f 100644
--- a/tests/online/clone.c
+++ b/tests/online/clone.c
@@ -869,18 +869,3 @@ void test_online_clone__path_whitespace(void)
 	cl_git_pass(git_clone(&g_repo, "https://libgit2@dev.azure.com/libgit2/test/_git/spaces%20in%20the%20name", "./foo", &g_options));
 	cl_assert(git_path_exists("./foo/master.txt"));
 }
-
-void test_online_clone__path_whitespace_ssh(void)
-{
-#ifndef GIT_SSH
-	clar__skip();
-#endif
-
-	if (!_remote_ssh_privkey)
-		clar__skip();
-
-	g_options.fetch_opts.callbacks.credentials = cred_cb;
-	g_options.fetch_opts.callbacks.certificate_check = NULL;
-	cl_git_pass(git_clone(&g_repo, "ssh://git@ssh.dev.azure.com/v3/libgit2/test/spaces%20in%20the%20name", "./foo", &g_options));
-	cl_assert(git_path_exists("./foo/master.txt"));
-}