diff options
author | Brent Baude <bbaude@redhat.com> | 2020-03-20 14:45:27 -0500 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2020-03-20 14:45:27 -0500 |
commit | f76aad0d47aa84a80ea0c4964d397b58cfad8359 (patch) | |
tree | dab8e8c88f3ad2b9a31af95b579bffd0438f2fc4 | |
parent | ccc30c606e843d5c98e2c62a3b393a61e60976b2 (diff) | |
download | podman-f76aad0d47aa84a80ea0c4964d397b58cfad8359.tar.gz podman-f76aad0d47aa84a80ea0c4964d397b58cfad8359.tar.bz2 podman-f76aad0d47aa84a80ea0c4964d397b58cfad8359.zip |
[CI:DOCS]fix type issue in pod binding test
Signed-off-by: Brent Baude <bbaude@redhat.com>
-rw-r--r-- | pkg/bindings/test/pods_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/bindings/test/pods_test.go b/pkg/bindings/test/pods_test.go index fae1deca4..bcf8e69b8 100644 --- a/pkg/bindings/test/pods_test.go +++ b/pkg/bindings/test/pods_test.go @@ -81,7 +81,7 @@ var _ = Describe("Podman pods", func() { It("List pods with filters", func() { var newpod2 string = "newpod2" bt.Podcreate(&newpod2) - _, err = bt.RunTopContainer(nil, &trueFlag, &newpod) + _, err = bt.RunTopContainer(nil, &bindings.PTrue, &newpod) Expect(err).To(BeNil()) // Expected err with invalid filter params |