diff options
author | Nikolay Edigaryev <edigaryev@gmail.com> | 2021-02-18 01:40:41 +0300 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2021-02-18 11:21:23 -0500 |
commit | 2b97dfc5eea1df424dd360d49424cf8768f31ef6 (patch) | |
tree | 42fe03dd7fd7f31d6cbe879b45d0668b819c0b84 | |
parent | c51f7836674a3195f0fc0161ee4e07ef8c58e40d (diff) | |
download | podman-2b97dfc5eea1df424dd360d49424cf8768f31ef6.tar.gz podman-2b97dfc5eea1df424dd360d49424cf8768f31ef6.tar.bz2 podman-2b97dfc5eea1df424dd360d49424cf8768f31ef6.zip |
Quote URL
Signed-off-by: Nikolay Edigaryev <edigaryev@gmail.com>
-rw-r--r-- | test/apiv2/20-containers.at | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/apiv2/20-containers.at b/test/apiv2/20-containers.at index 292562934..a99e9a184 100644 --- a/test/apiv2/20-containers.at +++ b/test/apiv2/20-containers.at @@ -63,7 +63,7 @@ cid=$(jq -r '.Id' <<<"$output") # Prior to the fix in #6835, this would fail 500 "args must not be empty" t POST libpod/containers/${cid}/start '' 204 # Container should exit almost immediately. Wait for it, confirm successful run -t POST libpod/containers/${cid}/wait?condition=stopped&condition=exited '' 200 '0' +t POST "libpod/containers/${cid}/wait?condition=stopped&condition=exited" '' 200 '0' t GET libpod/containers/${cid}/json 200 \ .Id=$cid \ .State.Status~\\\(exited\\\|stopped\\\) \ |