diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-10-01 09:20:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-01 09:20:14 -0400 |
commit | fedd9cc120cae6cc2df19d49ed916f35fc5f5d71 (patch) | |
tree | 666b224338d87f4c7915ce938dd557b2f14b5921 | |
parent | 1da364783dace3480ba1a142326aff2a644f19a8 (diff) | |
parent | fb2355adb3ce4de72d36830f608fb188c18d1981 (diff) | |
download | podman-fedd9cc120cae6cc2df19d49ed916f35fc5f5d71.tar.gz podman-fedd9cc120cae6cc2df19d49ed916f35fc5f5d71.tar.bz2 podman-fedd9cc120cae6cc2df19d49ed916f35fc5f5d71.zip |
Merge pull request #11823 from edsantiago/bats
Gating tests: fix permissions error
-rw-r--r-- | test/system/160-volumes.bats | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/system/160-volumes.bats b/test/system/160-volumes.bats index b48198a18..c02525e0d 100644 --- a/test/system/160-volumes.bats +++ b/test/system/160-volumes.bats @@ -191,7 +191,7 @@ EOF run_podman run --rm -v my_vol:/data $IMAGE sh -c "echo hello >> /data/test" run_podman volume create my_vol2 - tarfile=hello$(random_string | tr A-Z a-z).tar + tarfile=${PODMAN_TMPDIR}/hello$(random_string | tr A-Z a-z).tar run_podman volume export my_vol --output=$tarfile # we want to use `run_podman volume export my_vol` but run_podman is wrapping EOF run_podman volume import my_vol2 - < $tarfile |