diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-07-29 04:13:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-29 04:13:38 -0400 |
commit | 1ec1c85b5a44afb0e76c40e0e908c6e55ab9c3dd (patch) | |
tree | 888c3edb6838cdba4b3c86168aee3e7b0f7bdbf5 /test/e2e/run_test.go | |
parent | f9395ddc5ad8b32e4e9b24542f0869722f7c9743 (diff) | |
parent | a9f6592af6646d3692e8a7260df98dd606aa4d9b (diff) | |
download | podman-1ec1c85b5a44afb0e76c40e0e908c6e55ab9c3dd.tar.gz podman-1ec1c85b5a44afb0e76c40e0e908c6e55ab9c3dd.tar.bz2 podman-1ec1c85b5a44afb0e76c40e0e908c6e55ab9c3dd.zip |
Merge pull request #11048 from cdoern/heatlhCheckCompat
Fixed Healthcheck formatting, string to []string
Diffstat (limited to 'test/e2e/run_test.go')
-rw-r--r-- | test/e2e/run_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/e2e/run_test.go b/test/e2e/run_test.go index 3bfd59b54..3c65c02d1 100644 --- a/test/e2e/run_test.go +++ b/test/e2e/run_test.go @@ -1213,14 +1213,14 @@ USER mail`, BB) }) It("podman run with bad healthcheck timeout", func() { - session := podmanTest.Podman([]string{"run", "-dt", "--health-cmd", "[\"foo\"]", "--health-timeout", "0s", ALPINE, "top"}) + session := podmanTest.Podman([]string{"run", "-dt", "--health-cmd", "foo", "--health-timeout", "0s", ALPINE, "top"}) session.WaitWithDefaultTimeout() Expect(session).To(ExitWithError()) Expect(session.ErrorToString()).To(ContainSubstring("healthcheck-timeout must be at least 1 second")) }) It("podman run with bad healthcheck start-period", func() { - session := podmanTest.Podman([]string{"run", "-dt", "--health-cmd", "[\"foo\"]", "--health-start-period", "-1s", ALPINE, "top"}) + session := podmanTest.Podman([]string{"run", "-dt", "--health-cmd", "foo", "--health-start-period", "-1s", ALPINE, "top"}) session.WaitWithDefaultTimeout() Expect(session).To(ExitWithError()) Expect(session.ErrorToString()).To(ContainSubstring("healthcheck-start-period must be 0 seconds or greater")) |