summaryrefslogtreecommitdiff
path: root/test/system/400-unprivileged-access.bats
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-04-06 21:27:52 +0200
committerGitHub <noreply@github.com>2020-04-06 21:27:52 +0200
commit7d95e0c47ad7203c6ad3e5a0441a309e5368dc52 (patch)
tree94f380670abc8b55885d37f79c5232222d2e8b43 /test/system/400-unprivileged-access.bats
parent0519fa0f1e1697cd52f5ceb388117b64eefa7fc2 (diff)
parente20ecc733c878f0c4b67a21204f0d5ae11929bf0 (diff)
downloadpodman-7d95e0c47ad7203c6ad3e5a0441a309e5368dc52.tar.gz
podman-7d95e0c47ad7203c6ad3e5a0441a309e5368dc52.tar.bz2
podman-7d95e0c47ad7203c6ad3e5a0441a309e5368dc52.zip
Merge pull request #5507 from baude/newinfo
refactor info
Diffstat (limited to 'test/system/400-unprivileged-access.bats')
-rw-r--r--test/system/400-unprivileged-access.bats4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/system/400-unprivileged-access.bats b/test/system/400-unprivileged-access.bats
index 56c40e9c8..98f8b8211 100644
--- a/test/system/400-unprivileged-access.bats
+++ b/test/system/400-unprivileged-access.bats
@@ -70,10 +70,10 @@ EOF
chmod 755 $PODMAN_TMPDIR $test_script
# get podman image and container storage directories
- run_podman info --format '{{.store.GraphRoot}}'
+ run_podman info --format '{{.Store.GraphRoot}}'
is "$output" "/var/lib/containers/storage" "GraphRoot in expected place"
GRAPH_ROOT="$output"
- run_podman info --format '{{.store.RunRoot}}'
+ run_podman info --format '{{.Store.RunRoot}}'
is "$output" "/var/run/containers/storage" "RunRoot in expected place"
RUN_ROOT="$output"