summaryrefslogtreecommitdiff
path: root/test/e2e/play_kube_test.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-09-11 18:09:36 -0400
committerGitHub <noreply@github.com>2021-09-11 18:09:36 -0400
commit72662f790bad0a3dc26a6a1498b6daa936702bb6 (patch)
tree602f6d9d4264ac84e4365df9edfd87767b7175a7 /test/e2e/play_kube_test.go
parentec3037062d1f9a5ece00ffd465c0f815c06f1b5c (diff)
parent4fbc5b8fe75b3d486a97c013af7a6b085292b46a (diff)
downloadpodman-72662f790bad0a3dc26a6a1498b6daa936702bb6.tar.gz
podman-72662f790bad0a3dc26a6a1498b6daa936702bb6.tar.bz2
podman-72662f790bad0a3dc26a6a1498b6daa936702bb6.zip
Merge pull request #11525 from rhatdan/healthcheck
Stop outputting 'healthy' on healthcheck
Diffstat (limited to 'test/e2e/play_kube_test.go')
-rw-r--r--test/e2e/play_kube_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/play_kube_test.go b/test/e2e/play_kube_test.go
index 15bd10616..fcda89fbc 100644
--- a/test/e2e/play_kube_test.go
+++ b/test/e2e/play_kube_test.go
@@ -1237,7 +1237,7 @@ var _ = Describe("Podman play kube", func() {
hc := podmanTest.Podman([]string{"healthcheck", "run", "liveness-unhealthy-probe-pod-0-alpine"})
hc.WaitWithDefaultTimeout()
hcoutput := hc.OutputToString()
- Expect(hcoutput).To(ContainSubstring("unhealthy"))
+ Expect(hcoutput).To(ContainSubstring(define.HealthCheckUnhealthy))
})
It("podman play kube fail with nonexistent authfile", func() {