diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-08-29 14:13:09 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-29 14:13:09 -0700 |
commit | d110998744e816895b0a9d9bb90a02cd5d12df7b (patch) | |
tree | cbad3096c7e35c939a5f60de4238c673ad33ad80 /test/endpoint/endpoint.go | |
parent | ab5f52c0d2ce617f875ef69c9ae67381841a6514 (diff) | |
parent | 2fb6cc2ceac680350b403e6173926331d7904722 (diff) | |
download | podman-d110998744e816895b0a9d9bb90a02cd5d12df7b.tar.gz podman-d110998744e816895b0a9d9bb90a02cd5d12df7b.tar.bz2 podman-d110998744e816895b0a9d9bb90a02cd5d12df7b.zip |
Merge pull request #3907 from baude/commitcaps
dont panic when using varlink commit and uppercase image names
Diffstat (limited to 'test/endpoint/endpoint.go')
-rw-r--r-- | test/endpoint/endpoint.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/endpoint/endpoint.go b/test/endpoint/endpoint.go index 4f9e6055e..78aa957ab 100644 --- a/test/endpoint/endpoint.go +++ b/test/endpoint/endpoint.go @@ -189,6 +189,11 @@ func (p *EndpointTestIntegration) Varlink(endpoint, message string, more bool) * return &EndpointSession{session} } +func (s *EndpointSession) StdErrToString() string { + fields := strings.Fields(fmt.Sprintf("%s", s.Err.Contents())) + return strings.Join(fields, " ") +} + func (s *EndpointSession) OutputToString() string { fields := strings.Fields(fmt.Sprintf("%s", s.Out.Contents())) return strings.Join(fields, " ") |