summaryrefslogtreecommitdiff
path: root/pkg/bindings/test/system_test.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-12-18 15:04:45 +0000
committerGitHub <noreply@github.com>2020-12-18 15:04:45 +0000
commita73c76df29a022a05d71c351244fe6e54504edc2 (patch)
tree0f2fbeca9b01f2af622989c0ee9de91efaa8a526 /pkg/bindings/test/system_test.go
parentf56865879ccffeddce3b9e36f585fe67c37591d5 (diff)
parent9ec7603e1bb21dab11460eb6e51578a0e29e4c66 (diff)
downloadpodman-a73c76df29a022a05d71c351244fe6e54504edc2.tar.gz
podman-a73c76df29a022a05d71c351244fe6e54504edc2.tar.bz2
podman-a73c76df29a022a05d71c351244fe6e54504edc2.zip
Merge pull request #8767 from baude/bindings3pods
podman v3 pod bindings
Diffstat (limited to 'pkg/bindings/test/system_test.go')
-rw-r--r--pkg/bindings/test/system_test.go6
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.