We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97bafb9 commit 10f1bc2Copy full SHA for 10f1bc2
integrations/git_test.go
@@ -80,7 +80,7 @@ func TestGit(t *testing.T) {
80
})
81
82
u.Path = "user2/repo-tmp-17.git"
83
- u.User = url.UserPassword("user2", "password")
+ u.User = url.UserPassword("user2", userPassword)
84
t.Run("Clone", func(t *testing.T) {
85
err = git.Clone(u.String(), dstPath, git.CloneRepoOptions{})
86
assert.NoError(t, err)
@@ -159,7 +159,7 @@ func TestGit(t *testing.T) {
159
160
161
//Push
162
163
err = git.Push(dstPath, git.PushOptions{
164
Branch: "master",
165
Remote: u.String(),
0 commit comments