diff options
author | Valentin Rothberg <vrothberg@redhat.com> | 2022-03-21 13:50:55 +0100 |
---|---|---|
committer | Valentin Rothberg <vrothberg@redhat.com> | 2022-03-22 13:04:35 +0100 |
commit | fb792f7ed40eb319a3e99274584bf3f5076a43e5 (patch) | |
tree | 1ad29aaff458eba9a891a2d64fa8cc4974e4d414 /test/e2e | |
parent | f72a678f2a06697ff42e1fe5636cb09b47a25b49 (diff) | |
download | podman-fb792f7ed40eb319a3e99274584bf3f5076a43e5.tar.gz podman-fb792f7ed40eb319a3e99274584bf3f5076a43e5.tar.bz2 podman-fb792f7ed40eb319a3e99274584bf3f5076a43e5.zip |
linter: enable ineffassign
Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
Diffstat (limited to 'test/e2e')
-rw-r--r-- | test/e2e/inspect_test.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/e2e/inspect_test.go b/test/e2e/inspect_test.go index 3943a5e87..08bdc9488 100644 --- a/test/e2e/inspect_test.go +++ b/test/e2e/inspect_test.go @@ -86,6 +86,7 @@ var _ = Describe("Podman inspect", func() { It("podman inspect container with GO format for ConmonPidFile", func() { session, ec, _ := podmanTest.RunLsContainer("test1") + session.WaitWithDefaultTimeout() Expect(ec).To(Equal(0)) session = podmanTest.Podman([]string{"inspect", "--format", "{{.ConmonPidFile}}", "test1"}) @@ -529,6 +530,7 @@ var _ = Describe("Podman inspect", func() { It("podman inspect container with GO format for PidFile", func() { SkipIfRemote("pidfile not handled by remote") session, ec, _ := podmanTest.RunLsContainer("test1") + session.WaitWithDefaultTimeout() Expect(ec).To(Equal(0)) session = podmanTest.Podman([]string{"inspect", "--format", "{{.PidFile}}", "test1"}) |