summaryrefslogtreecommitdiff
path: root/test/apiv2/20-containers.at
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-10-12 12:54:14 -0400
committerGitHub <noreply@github.com>2020-10-12 12:54:14 -0400
commit5801a3048754a4e1ebedc884be9bd42c55892c4c (patch)
treed61866c385af612cfdcc44f3ec5a7b66d6ed3b7a /test/apiv2/20-containers.at
parent609f230ad758c7793bf363815c780616ec491abe (diff)
parentb2e6e4829f0b39d289d15df6f375e56cb3ba4bb5 (diff)
downloadpodman-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.at4
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