summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorChris Evich <cevich@redhat.com>2020-02-28 11:40:14 -0500
committerChris Evich <cevich@redhat.com>2020-02-28 11:44:16 -0500
commite95c493fec5cab6e487d73649641cec0c1567d2c (patch)
tree3df22ac232187324c2b5a53427b5910bb6162461 /pkg
parent04d9cee01a6eb1fe15402b2811b4df5980f0be7e (diff)
downloadpodman-e95c493fec5cab6e487d73649641cec0c1567d2c.tar.gz
podman-e95c493fec5cab6e487d73649641cec0c1567d2c.tar.bz2
podman-e95c493fec5cab6e487d73649641cec0c1567d2c.zip
Fix wrong condition in bindings test
Thanks for Brent Baude <bbaude@redhat.com> for the fix. Signed-off-by: Chris Evich <cevich@redhat.com>
Diffstat (limited to 'pkg')
-rw-r--r--pkg/bindings/test/common_test.go4
-rw-r--r--pkg/bindings/test/containers_test.go4
2 files changed, 6 insertions, 2 deletions
diff --git a/pkg/bindings/test/common_test.go b/pkg/bindings/test/common_test.go
index 38f5014ca..1fc774074 100644
--- a/pkg/bindings/test/common_test.go
+++ b/pkg/bindings/test/common_test.go
@@ -240,3 +240,7 @@ func createCache() {
}
b.cleanup()
}
+
+func isStopped(state string) bool {
+ return state == "exited" || state == "stopped"
+}
diff --git a/pkg/bindings/test/containers_test.go b/pkg/bindings/test/containers_test.go
index 6756e81c7..5a0bdebe6 100644
--- a/pkg/bindings/test/containers_test.go
+++ b/pkg/bindings/test/containers_test.go
@@ -232,7 +232,7 @@ var _ = Describe("Podman containers ", func() {
// Ensure container is stopped
data, err := containers.Inspect(connText, name, nil)
Expect(err).To(BeNil())
- Expect(data.State.Status).To(Equal("exited"))
+ Expect(isStopped(data.State.Status)).To(BeTrue())
})
It("podman stop a running container by ID", func() {
@@ -247,7 +247,7 @@ var _ = Describe("Podman containers ", func() {
// Ensure container is stopped
data, err = containers.Inspect(connText, name, nil)
Expect(err).To(BeNil())
- Expect(data.State.Status).To(Equal("exited"))
+ Expect(isStopped(data.State.Status)).To(BeTrue())
})
})