File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -215,7 +215,7 @@ func TestPrivateRegistry(t *testing.T) {
215
215
_ , err = runEnvbuilder (t , []string {
216
216
"GIT_URL=" + url ,
217
217
"DOCKERFILE_PATH=Dockerfile" ,
218
- "DOCKER_CONFIG_BASE64=" + base64 .RawStdEncoding .EncodeToString (config ),
218
+ "DOCKER_CONFIG_BASE64=" + base64 .StdEncoding .EncodeToString (config ),
219
219
})
220
220
require .NoError (t , err )
221
221
})
@@ -245,7 +245,7 @@ func TestPrivateRegistry(t *testing.T) {
245
245
_ , err = runEnvbuilder (t , []string {
246
246
"GIT_URL=" + url ,
247
247
"DOCKERFILE_PATH=Dockerfile" ,
248
- "DOCKER_CONFIG_BASE64=" + base64 .RawStdEncoding .EncodeToString (config ),
248
+ "DOCKER_CONFIG_BASE64=" + base64 .StdEncoding .EncodeToString (config ),
249
249
})
250
250
require .ErrorContains (t , err , "Unauthorized" )
251
251
})
You can’t perform that action at this time.
0 commit comments