diff options
author | Brent Baude <bbaude@redhat.com> | 2020-04-09 08:47:15 -0500 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2020-04-13 09:15:24 -0500 |
commit | 6f650a512948a85bbb1a8830d5700a6ce9375c1d (patch) | |
tree | 8cc88145de5cf238c2c3a0475b9553d8a5965156 /pkg/bindings/test | |
parent | 1593d4c052fc0795e6fe31917edcb1ecbe5ee192 (diff) | |
download | podman-6f650a512948a85bbb1a8830d5700a6ce9375c1d.tar.gz podman-6f650a512948a85bbb1a8830d5700a6ce9375c1d.tar.bz2 podman-6f650a512948a85bbb1a8830d5700a6ce9375c1d.zip |
podmanv2 history and image remove templates
remove the use of template functions images and history to allow for straight-forward user experience. instead of templates we use structs and struct methods.
Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/bindings/test')
-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()) }) |