Fix failing kubeconfig unit test

This commit is contained in:
Margo Crawford 2021-01-07 16:23:41 -08:00
parent 5611212ea9
commit 1b770b01ae

View File

@ -321,6 +321,7 @@ func TestGetKubeconfig(t *testing.T) {
- --token=test-token - --token=test-token
command: '.../path/to/pinniped' command: '.../path/to/pinniped'
env: [] env: []
provideClusterInfo: false
`), `),
}, },
{ {
@ -365,6 +366,7 @@ func TestGetKubeconfig(t *testing.T) {
- --token-env=TEST_TOKEN - --token-env=TEST_TOKEN
command: '.../path/to/pinniped' command: '.../path/to/pinniped'
env: [] env: []
provideClusterInfo: false
`), `),
}, },
{ {
@ -420,6 +422,7 @@ func TestGetKubeconfig(t *testing.T) {
- --request-audience=test-audience - --request-audience=test-audience
command: '.../path/to/pinniped' command: '.../path/to/pinniped'
env: [] env: []
provideClusterInfo: false
`, base64.StdEncoding.EncodeToString(testCA.Bundle())), `, base64.StdEncoding.EncodeToString(testCA.Bundle())),
}, },
{ {
@ -481,6 +484,7 @@ func TestGetKubeconfig(t *testing.T) {
- --request-audience=test-audience - --request-audience=test-audience
command: '.../path/to/pinniped' command: '.../path/to/pinniped'
env: [] env: []
provideClusterInfo: false
`, base64.StdEncoding.EncodeToString(testCA.Bundle())), `, base64.StdEncoding.EncodeToString(testCA.Bundle())),
}, },
} }