summaryrefslogtreecommitdiff
path: root/test/e2e/container_inspect_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/e2e/container_inspect_test.go')
-rw-r--r--test/e2e/container_inspect_test.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/e2e/container_inspect_test.go b/test/e2e/container_inspect_test.go
index 840f13e3d..9a95a275a 100644
--- a/test/e2e/container_inspect_test.go
+++ b/test/e2e/container_inspect_test.go
@@ -7,6 +7,7 @@ import (
. "github.com/containers/podman/v3/test/utils"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
+ . "github.com/onsi/gomega/gexec"
)
var _ = Describe("Podman container inspect", func() {
@@ -36,7 +37,7 @@ var _ = Describe("Podman container inspect", func() {
const testContainer = "container-inspect-test-1"
setup := podmanTest.RunTopContainer(testContainer)
setup.WaitWithDefaultTimeout()
- Expect(setup.ExitCode()).To(Equal(0))
+ Expect(setup).Should(Exit(0))
data := podmanTest.InspectContainer(testContainer)
Expect(data[0].Config.Annotations[annotations.ContainerManager]).