From 6f650a512948a85bbb1a8830d5700a6ce9375c1d Mon Sep 17 00:00:00 2001 From: Brent Baude Date: Thu, 9 Apr 2020 08:47:15 -0500 Subject: 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 --- pkg/bindings/test/containers_test.go | 1 + 1 file changed, 1 insertion(+) (limited to 'pkg/bindings/test') 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()) }) -- cgit v1.2.3-54-g00ecf