summaryrefslogtreecommitdiff
path: root/test/e2e/tree_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/e2e/tree_test.go')
-rw-r--r--test/e2e/tree_test.go9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/e2e/tree_test.go b/test/e2e/tree_test.go
index 33c69554b..492dc50b2 100644
--- a/test/e2e/tree_test.go
+++ b/test/e2e/tree_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 image tree", func() {
@@ -45,16 +46,16 @@ ENV foo=bar
session := podmanTest.Podman([]string{"image", "tree", "test:latest"})
session.WaitWithDefaultTimeout()
- Expect(session.ExitCode()).To(Equal(0))
+ Expect(session).Should(Exit(0))
session = podmanTest.Podman([]string{"image", "tree", "--whatrequires", "quay.io/libpod/cirros:latest"})
session.WaitWithDefaultTimeout()
- Expect(session.ExitCode()).To(Equal(0))
+ Expect(session).Should(Exit(0))
session = podmanTest.Podman([]string{"rmi", "test:latest"})
session.WaitWithDefaultTimeout()
- Expect(session.ExitCode()).To(Equal(0))
+ Expect(session).Should(Exit(0))
session = podmanTest.Podman([]string{"rmi", "quay.io/libpod/cirros:latest"})
session.WaitWithDefaultTimeout()
- Expect(session.ExitCode()).To(Equal(0))
+ Expect(session).Should(Exit(0))
})
})