Update clone_test.go

Co-authored-by: lhchavez <lhchavez@lhchavez.com>
This commit is contained in:
Yashodhan Ghadge 2021-10-21 18:49:44 +05:30 committed by GitHub
parent 8e8cb91f50
commit 406940513f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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