Merge pull request #1337 from docker/ecs_ece_failure

progress writes to stderr
This commit is contained in:
Guillaume Tardif 2021-02-22 17:23:55 +01:00 committed by GitHub
commit 542fd04c26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ func TestCompose(t *testing.T) {
res := icmd.StartCmd(cmd)
checkUp := func(t poll.LogT) poll.Result {
out := res.Stdout()
out := res.Combined()
if !strings.Contains(out, "DeleteComplete") {
return poll.Continue("current status \n%s\n", out)
}