diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-13 17:47:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-13 17:47:31 +0200 |
commit | 465b4bc563b274ec166868aae079a65ee0284b1d (patch) | |
tree | 960fa4c1c5e4fd308cb41acbfefb19fb30484229 /pkg | |
parent | 309a7f7d1bbd046b4bd1a961a7e8c5313aa11b8e (diff) | |
parent | 6f650a512948a85bbb1a8830d5700a6ce9375c1d (diff) | |
download | podman-465b4bc563b274ec166868aae079a65ee0284b1d.tar.gz podman-465b4bc563b274ec166868aae079a65ee0284b1d.tar.bz2 podman-465b4bc563b274ec166868aae079a65ee0284b1d.zip |
Merge pull request #5778 from baude/v2removetemplates
podmanv2 history and image remove templates
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/bindings/test/containers_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/bindings/test/containers_test.go b/pkg/bindings/test/containers_test.go index d3fc80eea..a8e2fd071 100644 --- a/pkg/bindings/test/containers_test.go +++ b/pkg/bindings/test/containers_test.go @@ -508,6 +508,7 @@ var _ = Describe("Podman containers ", func() { _, err = bt.RunTopContainer(&name2, &bindings.PFalse, nil) Expect(err).To(BeNil()) containerLatestList, err := containers.List(bt.conn, nil, nil, &latestContainers, nil, nil, nil) + Expect(err).To(BeNil()) err = containers.Kill(bt.conn, containerLatestList[0].Names(), "SIGTERM") Expect(err).To(BeNil()) }) |