diff options
author | baude <bbaude@redhat.com> | 2020-12-16 15:37:43 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2020-12-17 12:08:22 -0600 |
commit | 9ec7603e1bb21dab11460eb6e51578a0e29e4c66 (patch) | |
tree | 5020a88efffc411bc6b92b44eb569c6061a4dfe3 /pkg/bindings/test/system_test.go | |
parent | a17afa931d1aa73b8657cf26de3b49841837f66d (diff) | |
download | podman-9ec7603e1bb21dab11460eb6e51578a0e29e4c66.tar.gz podman-9ec7603e1bb21dab11460eb6e51578a0e29e4c66.tar.bz2 podman-9ec7603e1bb21dab11460eb6e51578a0e29e4c66.zip |
podman v3 pod bindings
add options to each pod binding for future wiggle room
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/bindings/test/system_test.go')
-rw-r--r-- | pkg/bindings/test/system_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/bindings/test/system_test.go b/pkg/bindings/test/system_test.go index 8a8c94d09..5cb0f9125 100644 --- a/pkg/bindings/test/system_test.go +++ b/pkg/bindings/test/system_test.go @@ -65,7 +65,7 @@ var _ = Describe("Podman system", func() { It("podman system prune - pod,container stopped", func() { // Start and stop a pod to enter in exited state. - _, err := pods.Start(bt.conn, newpod) + _, err := pods.Start(bt.conn, newpod, nil) Expect(err).To(BeNil()) _, err = pods.Stop(bt.conn, newpod, nil) Expect(err).To(BeNil()) @@ -90,7 +90,7 @@ var _ = Describe("Podman system", func() { It("podman system prune running alpine container", func() { // Start and stop a pod to enter in exited state. - _, err := pods.Start(bt.conn, newpod) + _, err := pods.Start(bt.conn, newpod, nil) Expect(err).To(BeNil()) _, err = pods.Stop(bt.conn, newpod, nil) Expect(err).To(BeNil()) @@ -126,7 +126,7 @@ var _ = Describe("Podman system", func() { It("podman system prune running alpine container volume prune", func() { // Start a pod and leave it running - _, err := pods.Start(bt.conn, newpod) + _, err := pods.Start(bt.conn, newpod, nil) Expect(err).To(BeNil()) // Start and stop a container to enter in exited state. |