summaryrefslogtreecommitdiff
path: root/pkg/auth/auth_test.go
diff options
context:
space:
mode:
authorMiloslav Trmač <mitr@redhat.com>2021-10-21 21:27:25 +0200
committerMiloslav Trmač <mitr@redhat.com>2021-12-10 18:16:26 +0100
commitf9be3262740a2961f5c1a4db24265234a3fc6a5f (patch)
tree230309366cd0a267e38a5066376949969e0881b8 /pkg/auth/auth_test.go
parent935dcbb0088a667406dd00562ea8fc1fbc00f3ef (diff)
downloadpodman-f9be3262740a2961f5c1a4db24265234a3fc6a5f.tar.gz
podman-f9be3262740a2961f5c1a4db24265234a3fc6a5f.tar.bz2
podman-f9be3262740a2961f5c1a4db24265234a3fc6a5f.zip
Remove the authfile parameter of MakeXRegistryConfigHeader
Having a parameter that modifies the provides types.SystemContext seems rather unexpected and risky to have around - and the only user of that is actually a no-op; so, remove that option and simplify. Should not change behavior. Signed-off-by: Miloslav Trmač <mitr@redhat.com>
Diffstat (limited to 'pkg/auth/auth_test.go')
-rw-r--r--pkg/auth/auth_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/auth/auth_test.go b/pkg/auth/auth_test.go
index ec5c1c9e7..a727a9d50 100644
--- a/pkg/auth/auth_test.go
+++ b/pkg/auth/auth_test.go
@@ -81,7 +81,7 @@ func TestMakeXRegistryConfigHeaderGetCredentialsRoundtrip(t *testing.T) {
} {
inputAuthFile, cleanup := tempAuthFilePath(t, tc.fileContents)
defer cleanup()
- headers, err := MakeXRegistryConfigHeader(nil, inputAuthFile, tc.username, tc.password)
+ headers, err := MakeXRegistryConfigHeader(&types.SystemContext{AuthFilePath: inputAuthFile}, tc.username, tc.password)
require.NoError(t, err)
req, err := http.NewRequest(http.MethodPost, "/", nil)
require.NoError(t, err, tc.name)
@@ -208,7 +208,7 @@ func TestMakeXRegistryConfigHeader(t *testing.T) {
} {
authFile, cleanup := tempAuthFilePath(t, tc.fileContents)
defer cleanup()
- res, err := MakeXRegistryConfigHeader(nil, authFile, tc.username, tc.password)
+ res, err := MakeXRegistryConfigHeader(&types.SystemContext{AuthFilePath: authFile}, tc.username, tc.password)
if tc.shouldErr {
assert.Error(t, err, tc.name)
} else {