diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-05-14 15:13:47 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-14 15:13:47 -0700 |
commit | 4611ff5ce4ff67a142363ab66e10944bfc40f860 (patch) | |
tree | d448ffcef5efca4eae3dfccbad291a849916dbfe /pkg/bindings/test/exec_test.go | |
parent | 0d9625152b9acf1dc7662e38f56aa5b106c4dfcd (diff) | |
parent | f587fa3ba383c62690320ebc4dfbd8b9d68a73ac (diff) | |
download | podman-4611ff5ce4ff67a142363ab66e10944bfc40f860.tar.gz podman-4611ff5ce4ff67a142363ab66e10944bfc40f860.tar.bz2 podman-4611ff5ce4ff67a142363ab66e10944bfc40f860.zip |
Merge pull request #6236 from jwhonce/wip/boxed
Make convenience boxed true/false easier to use
Diffstat (limited to 'pkg/bindings/test/exec_test.go')
-rw-r--r-- | pkg/bindings/test/exec_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/bindings/test/exec_test.go b/pkg/bindings/test/exec_test.go index 1ef2197b6..53b2dcb4a 100644 --- a/pkg/bindings/test/exec_test.go +++ b/pkg/bindings/test/exec_test.go @@ -33,7 +33,7 @@ var _ = Describe("Podman containers exec", func() { It("Podman exec create makes an exec session", func() { name := "testCtr" - cid, err := bt.RunTopContainer(&name, &bindings.PFalse, nil) + cid, err := bt.RunTopContainer(&name, bindings.PFalse, nil) Expect(err).To(BeNil()) execConfig := new(handlers.ExecCreateConfig) @@ -53,7 +53,7 @@ var _ = Describe("Podman containers exec", func() { It("Podman exec create with bad command fails", func() { name := "testCtr" - _, err := bt.RunTopContainer(&name, &bindings.PFalse, nil) + _, err := bt.RunTopContainer(&name, bindings.PFalse, nil) Expect(err).To(BeNil()) execConfig := new(handlers.ExecCreateConfig) |