diff options
author | Miloslav Trmač <mitr@redhat.com> | 2022-07-30 17:26:07 +0200 |
---|---|---|
committer | Miloslav Trmač <mitr@redhat.com> | 2022-07-30 17:26:07 +0200 |
commit | b01478044b47ac07697a8db1b5eb7f7922b058cc (patch) | |
tree | 3fe80d7b54a44a87884ecf917f079ced75445fe0 /test/utils | |
parent | fed326d8a6f8d4f7dc490099b29d51fc1754789f (diff) | |
parent | 5a5624f8189c0e4c529e4c00d6ed66397d1db5b4 (diff) | |
download | podman-b01478044b47ac07697a8db1b5eb7f7922b058cc.tar.gz podman-b01478044b47ac07697a8db1b5eb7f7922b058cc.tar.bz2 podman-b01478044b47ac07697a8db1b5eb7f7922b058cc.zip |
Merge branch 'registry-2.8' into HEAD
Diffstat (limited to 'test/utils')
-rw-r--r-- | test/utils/utils.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/utils/utils.go b/test/utils/utils.go index 9c2a63c81..19b287ae1 100644 --- a/test/utils/utils.go +++ b/test/utils/utils.go @@ -225,7 +225,7 @@ func (p *PodmanTest) WaitContainerReady(id string, expStr string, timeout int, s return false } - if strings.Contains(s.OutputToString(), expStr) { + if strings.Contains(s.OutputToString(), expStr) || strings.Contains(s.ErrorToString(), expStr) { return true } time.Sleep(time.Duration(step) * time.Second) |