fix: lint issues

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
This commit is contained in:
Carlos Alexandro Becker 2020-07-29 23:26:08 -03:00
parent ed04106af4
commit fdcc40683e
1 changed files with 3 additions and 3 deletions

View File

@ -152,7 +152,7 @@ func TestGetGitAuth(t *testing.T) {
{
testName: "withToken",
setEnv: func() (expectedValue transport.AuthMethod) {
token := "super-secret-token-1234"
token := "some-other-token"
_ = os.Setenv(gitAuthTokenEnvKey, token)
expectedValue = &http.BasicAuth{Username: token}
return
@ -162,8 +162,8 @@ func TestGetGitAuth(t *testing.T) {
testName: "withTokenUsernamePassword",
setEnv: func() (expectedValue transport.AuthMethod) {
username := "foo"
token := "super-secret-password-1234"
pass := "super-secret-token-1234"
token := "some-token-45678"
pass := "some-password-12345"
_ = os.Setenv(gitAuthUsernameEnvKey, username)
_ = os.Setenv(gitAuthPasswordEnvKey, pass)
_ = os.Setenv(gitAuthTokenEnvKey, token)