fix: improve tests

Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
This commit is contained in:
Carlos Alexandro Becker 2020-06-15 11:20:27 -03:00
parent 8322cbe3b6
commit 13e6bdf533
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940
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-password-1234"
token := "super-secret-token-1234"
_ = os.Setenv(gitAuthTokenEnvKey, token)
expectedValue = &http.BasicAuth{Username: token}
return
@ -161,9 +161,9 @@ func TestGetGitAuth(t *testing.T) {
{
testName: "withTokenUsernamePassword",
setEnv: func() (expectedValue transport.AuthMethod) {
token := "super-secret-password-1234"
username := "foo"
pass := "super-secret-password-1234"
token := "super-secret-password-1234"
pass := "super-secret-token-1234"
_ = os.Setenv(gitAuthUsernameEnvKey, username)
_ = os.Setenv(gitAuthPasswordEnvKey, pass)
_ = os.Setenv(gitAuthTokenEnvKey, token)