aboutsummaryrefslogtreecommitdiff
path: root/test/utils/utils.go
diff options
context:
space:
mode:
authoropenshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com>2022-08-02 20:09:10 +0000
committerGitHub <noreply@github.com>2022-08-02 20:09:10 +0000
commit49ae6cfed67dbc38408c85b3be52af69fa8f031d (patch)
tree3bd355609715d56a0f4126179c0876cfece3aa4d /test/utils/utils.go
parent87f892e5b56c2fab2f394f8cc79794ccce03f510 (diff)
parent5c95c0920f32b61021395ec2700884d136240de7 (diff)
downloadpodman-49ae6cfed67dbc38408c85b3be52af69fa8f031d.tar.gz
podman-49ae6cfed67dbc38408c85b3be52af69fa8f031d.tar.bz2
podman-49ae6cfed67dbc38408c85b3be52af69fa8f031d.zip
Merge pull request #15142 from mtrmac/sigstore-sign-4.2
[v4.2] Sigstore sign
Diffstat (limited to 'test/utils/utils.go')
-rw-r--r--test/utils/utils.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/utils/utils.go b/test/utils/utils.go
index 72339014e..3e7ed1d55 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)