summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-01-21 10:07:27 -0500
committerGitHub <noreply@github.com>2022-01-21 10:07:27 -0500
commite3ea996919295213eacc41d01fdc4018cbc5edf6 (patch)
tree0c040f834e0c5453e61bd4e32105593c6bc14bf7 /test
parent6e171585027e5dfcf519cf4bdc9a281248cfe0c3 (diff)
parent653da8fe8f42d96a8ed117f8936f1187dd7288e8 (diff)
downloadpodman-e3ea996919295213eacc41d01fdc4018cbc5edf6.tar.gz
podman-e3ea996919295213eacc41d01fdc4018cbc5edf6.tar.bz2
podman-e3ea996919295213eacc41d01fdc4018cbc5edf6.zip
Merge pull request #12951 from rhatdan/commit
Fix #2 for compat commit handling of --changes
Diffstat (limited to 'test')
-rw-r--r--test/apiv2/20-containers.at2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/apiv2/20-containers.at b/test/apiv2/20-containers.at
index 45c040fbc..cc5eda88e 100644
--- a/test/apiv2/20-containers.at
+++ b/test/apiv2/20-containers.at
@@ -434,7 +434,7 @@ cid=$(jq -r '.Id' <<<"$output")
t POST "commit?container=nonesuch" 404
cparam="repo=newrepo&tag=v3&comment=abcd&author=eric"
-cparam="$cparam&format=docker&changes=CMD=/bin/bar,EXPOSE=9090"
+cparam="$cparam&format=docker&changes=CMD%20/bin/bar%0aEXPOSE%209090"
t POST "commit?container=${cid:0:12}&$cparam" 201 \
.Id~[0-9a-f]\\{64\\}
iid=$(jq -r '.Id' <<<"$output")