bugfix: HTTPS Clone fails with remote pointer not found using Go transport (#836) #842

Merged
codexetreme merged 10 commits from bugfix/error_while_cloning into main 2021-10-23 12:33:11 -05:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 406940513f - Show all commits

View File

@ -107,6 +107,6 @@ func TestCloneWithExternalHTTPUrWithLocalServer(t *testing.T) {
path, err := ioutil.TempDir("", "git2go") path, err := ioutil.TempDir("", "git2go")
_, err = Clone(url, path, &CloneOptions{}) _, err = Clone(url, path, &CloneOptions{})
if err != nil { if err != nil {
t.Fatal("cannot clone remote repo via https, error: ", err) t.Fatal("cannot clone remote repo via http, error: ", err)
} }
} }