diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-08-03 09:10:53 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-03 09:10:53 -0400 |
commit | de5eb3831190262169eab36e64c41992dc22766a (patch) | |
tree | 66594f108877fa59012ba371fb19474bb6aa6d4e /test/endpoint/endpoint.go | |
parent | 41358f5ea06062f1e1b80bd29802ea5d51cfe3b1 (diff) | |
parent | fef3e2da6a2024fff5142b5df80aba36e895ed73 (diff) | |
download | podman-de5eb3831190262169eab36e64c41992dc22766a.tar.gz podman-de5eb3831190262169eab36e64c41992dc22766a.tar.bz2 podman-de5eb3831190262169eab36e64c41992dc22766a.zip |
Merge pull request #7191 from openSUSE/printf
Remove some unnecessary []byte to string conversions
Diffstat (limited to 'test/endpoint/endpoint.go')
-rw-r--r-- | test/endpoint/endpoint.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/endpoint/endpoint.go b/test/endpoint/endpoint.go index 0593b05cd..d2c143824 100644 --- a/test/endpoint/endpoint.go +++ b/test/endpoint/endpoint.go @@ -192,12 +192,12 @@ func (p *EndpointTestIntegration) Varlink(endpoint, message string, more bool) * } func (s *EndpointSession) StdErrToString() string { - fields := strings.Fields(fmt.Sprintf("%s", s.Err.Contents())) + fields := strings.Fields(string(s.Err.Contents())) return strings.Join(fields, " ") } func (s *EndpointSession) OutputToString() string { - fields := strings.Fields(fmt.Sprintf("%s", s.Out.Contents())) + fields := strings.Fields(string(s.Out.Contents())) return strings.Join(fields, " ") } |