diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-10-12 12:54:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-12 12:54:14 -0400 |
commit | 5801a3048754a4e1ebedc884be9bd42c55892c4c (patch) | |
tree | d61866c385af612cfdcc44f3ec5a7b66d6ed3b7a /test/apiv2/20-containers.at | |
parent | 609f230ad758c7793bf363815c780616ec491abe (diff) | |
parent | b2e6e4829f0b39d289d15df6f375e56cb3ba4bb5 (diff) | |
download | podman-5801a3048754a4e1ebedc884be9bd42c55892c4c.tar.gz podman-5801a3048754a4e1ebedc884be9bd42c55892c4c.tar.bz2 podman-5801a3048754a4e1ebedc884be9bd42c55892c4c.zip |
Merge pull request #7994 from edsantiago/fix_apiv2_tests
APIv2 tests: get them passing again
Diffstat (limited to 'test/apiv2/20-containers.at')
-rw-r--r-- | test/apiv2/20-containers.at | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/apiv2/20-containers.at b/test/apiv2/20-containers.at index d7e5bfee8..7fbcd2e9c 100644 --- a/test/apiv2/20-containers.at +++ b/test/apiv2/20-containers.at @@ -211,8 +211,8 @@ t POST containers/create '"Image":"'$ENV_WORKDIR_IMG'","Env":["testKey1"]' 201 \ .Id~[0-9a-f]\\{64\\} cid=$(jq -r '.Id' <<<"$output") t GET containers/$cid/json 200 \ - .Config.Env~"REDIS_VERSION=" \ - .Config.Env~"testEnv1=" \ + .Config.Env~.*REDIS_VERSION= \ + .Config.Env~.*testKey1= \ .Config.WorkingDir="/data" # default is /data t DELETE containers/$cid 204 |