summaryrefslogtreecommitdiff
path: root/test/e2e
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-02-25 19:48:47 +0100
committerGitHub <noreply@github.com>2019-02-25 19:48:47 +0100
commitbf3b68b128574d6c2e57863a7e2532b8f6e211e2 (patch)
tree21546b987d872879a372e458798804f2548c3b2c /test/e2e
parent73cfb9f127b0991c3faac9ff1fafed8d65355e4b (diff)
parentfe4c0c37807f250c8f222bbe7634df13a6da8756 (diff)
downloadpodman-bf3b68b128574d6c2e57863a7e2532b8f6e211e2.tar.gz
podman-bf3b68b128574d6c2e57863a7e2532b8f6e211e2.tar.bz2
podman-bf3b68b128574d6c2e57863a7e2532b8f6e211e2.zip
Merge pull request #2421 from rhatdan/rmi
Change exit code to 1 on podman rmi nosuch image
Diffstat (limited to 'test/e2e')
-rw-r--r--test/e2e/rmi_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/rmi_test.go b/test/e2e/rmi_test.go
index c160e1bc5..dcbda2df4 100644
--- a/test/e2e/rmi_test.go
+++ b/test/e2e/rmi_test.go
@@ -36,7 +36,7 @@ var _ = Describe("Podman rmi", func() {
It("podman rmi bogus image", func() {
session := podmanTest.Podman([]string{"rmi", "debian:6.0.10"})
session.WaitWithDefaultTimeout()
- Expect(session.ExitCode()).To(Equal(125))
+ Expect(session.ExitCode()).To(Equal(1))
})