diff options
-rw-r--r-- | .golangci.yml | 1 | ||||
-rw-r--r-- | test/e2e/inspect_test.go | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/.golangci.yml b/.golangci.yml index a27d96bcf..42692ad77 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -58,7 +58,6 @@ linters: - cyclop - errname - forcetypeassert - - ineffassign - ireturn - tagliatelle - varnamelen 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"}) |