summaryrefslogtreecommitdiff
path: root/pkg/auth/auth_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/auth/auth_test.go')
-rw-r--r--pkg/auth/auth_test.go12
1 files changed, 5 insertions, 7 deletions
diff --git a/pkg/auth/auth_test.go b/pkg/auth/auth_test.go
index 634215acf..0e6bd42ef 100644
--- a/pkg/auth/auth_test.go
+++ b/pkg/auth/auth_test.go
@@ -302,24 +302,22 @@ func TestParseSingleAuthHeader(t *testing.T) {
for _, tc := range []struct {
input string
shouldErr bool
- expected map[string]types.DockerAuthConfig
+ expected types.DockerAuthConfig
}{
{
input: "", // An empty (or missing) header
- expected: map[string]types.DockerAuthConfig{"0": {}},
+ expected: types.DockerAuthConfig{},
},
{
input: "null",
- expected: map[string]types.DockerAuthConfig{"0": {}},
+ expected: types.DockerAuthConfig{},
},
// Invalid JSON
{input: "@", shouldErr: true},
// Success
{
- input: base64.URLEncoding.EncodeToString([]byte(`{"username":"u1","password":"p1"}`)),
- expected: map[string]types.DockerAuthConfig{
- "0": {Username: "u1", Password: "p1"},
- },
+ input: base64.URLEncoding.EncodeToString([]byte(`{"username":"u1","password":"p1"}`)),
+ expected: types.DockerAuthConfig{Username: "u1", Password: "p1"},
},
} {
req, err := http.NewRequest(http.MethodPost, "/", nil)