summaryrefslogtreecommitdiff
path: root/test/apiv2
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-03-04 13:46:56 -0500
committerGitHub <noreply@github.com>2021-03-04 13:46:56 -0500
commite65bcc166c3bc7e039ff0909c2cac919ce0122ad (patch)
tree8cab909fa688ac16ef73c5f19869a1cad468fba6 /test/apiv2
parent7a92de4bacdff145a871371d5a306bd349e83374 (diff)
parent53d22c779c5d2df5ccda5a8e23db0501a0dadf44 (diff)
downloadpodman-e65bcc166c3bc7e039ff0909c2cac919ce0122ad.tar.gz
podman-e65bcc166c3bc7e039ff0909c2cac919ce0122ad.tar.bz2
podman-e65bcc166c3bc7e039ff0909c2cac919ce0122ad.zip
Merge pull request #9604 from mheon/fix_9510
Compat API: create volume source dirs on the host
Diffstat (limited to 'test/apiv2')
-rw-r--r--test/apiv2/44-mounts.at2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/apiv2/44-mounts.at b/test/apiv2/44-mounts.at
index fe202576d..5dc560852 100644
--- a/test/apiv2/44-mounts.at
+++ b/test/apiv2/44-mounts.at
@@ -4,7 +4,7 @@ podman pull $IMAGE &>/dev/null
# Test various HostConfig options
tmpfs_name="/mytmpfs"
-t POST containers/create?name=hostconfig_test '"Image":"'$IMAGE'","Cmd":["df"],"HostConfig":{"TmpFs":{"'$tmpfs_name'":"rw"}}' 201 \
+t POST containers/create?name=hostconfig_test '"Image":"'$IMAGE'","Cmd":["df"],"HostConfig":{"Binds":["/tmp/doesnotexist:/test1"],"TmpFs":{"'$tmpfs_name'":"rw"}}' 201 \
.Id~[0-9a-f]\\{64\\}
cid=$(jq -r '.Id' <<<"$output")