Skip to content

Commit b15e7f2

Browse files
committed
clone: Update whitespace test url
1 parent 42ea2f9 commit b15e7f2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/online/clone.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -866,8 +866,8 @@ void test_online_clone__proxy_cred_callback_after_failed_url_creds(void)
866866

867867
void test_online_clone__path_whitespace(void)
868868
{
869-
cl_git_pass(git_clone(&g_repo, "https://dev.azure.com/ianhattendorf/With%20Space/_git/With%20Space", "./foo", &g_options));
870-
cl_assert(git_path_exists("./foo/README.md"));
869+
cl_git_pass(git_clone(&g_repo, "https://libgit2@dev.azure.com/libgit2/test/_git/spaces%20in%20the%20name", "./foo", &g_options));
870+
cl_assert(git_path_exists("./foo/master.txt"));
871871
}
872872

873873
void test_online_clone__path_whitespace_ssh(void)
@@ -881,6 +881,6 @@ void test_online_clone__path_whitespace_ssh(void)
881881

882882
g_options.fetch_opts.callbacks.credentials = cred_cb;
883883
g_options.fetch_opts.callbacks.certificate_check = NULL;
884-
cl_git_pass(git_clone(&g_repo, "ssh://git@ssh.dev.azure.com/v3/ianhattendorf/With%20Space/With%20Space", "./foo", &g_options));
885-
cl_assert(git_path_exists("./foo/README.md"));
884+
cl_git_pass(git_clone(&g_repo, "ssh://git@ssh.dev.azure.com/v3/libgit2/test/spaces%20in%20the%20name", "./foo", &g_options));
885+
cl_assert(git_path_exists("./foo/master.txt"));
886886
}

0 commit comments

Comments
 (0)