mirror of
https://github.com/docker/compose.git
synced 2026-08-04 14:47:40 +00:00
Merge pull request #481 from ulyssessouza/fix-golang114-e2e-local-tests
Fix e2e-local tests when compiled with go1.14
This commit is contained in:
commit
d902c968e7
1 changed files with 2 additions and 2 deletions
|
|
@ -199,7 +199,7 @@ func TestLoginCommandDelegation(t *testing.T) {
|
|||
res := c.RunDockerCmd("login", "-u", "nouser", "-p", "wrongpasword")
|
||||
res.Assert(t, icmd.Expected{
|
||||
ExitCode: 1,
|
||||
Err: "Get https://registry-1.docker.io/v2/: unauthorized: incorrect username or password",
|
||||
Err: "unauthorized: incorrect username or password",
|
||||
})
|
||||
})
|
||||
|
||||
|
|
@ -225,7 +225,7 @@ func TestLoginCommandDelegation(t *testing.T) {
|
|||
res := c.RunDockerCmd("login", "-u", "nouser", "-p", "wrongpasword")
|
||||
res.Assert(t, icmd.Expected{
|
||||
ExitCode: 1,
|
||||
Err: "Get https://registry-1.docker.io/v2/: unauthorized: incorrect username or password",
|
||||
Err: "unauthorized: incorrect username or password",
|
||||
})
|
||||
})
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue