diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-09-13 13:35:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-13 13:35:10 +0200 |
commit | d88d74639fbabfd83663ea94a11c11c7a54b781b (patch) | |
tree | 7c11ae7b8a0f8fe59e7e29ebeca6e5a43424d69f /test/system | |
parent | c0dd0d696e333ad42a5fa3d9428fee27b1c30061 (diff) | |
parent | 07a8eb829563df9215d86eed7b3337c14dadb6cc (diff) | |
download | podman-d88d74639fbabfd83663ea94a11c11c7a54b781b.tar.gz podman-d88d74639fbabfd83663ea94a11c11c7a54b781b.tar.bz2 podman-d88d74639fbabfd83663ea94a11c11c7a54b781b.zip |
Merge pull request #15753 from mheon/fix_15720
Ensure that the DF endpoint updated volume refcount
Diffstat (limited to 'test/system')
-rw-r--r-- | test/system/320-system-df.bats | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/system/320-system-df.bats b/test/system/320-system-df.bats index 217357b37..35e121c62 100644 --- a/test/system/320-system-df.bats +++ b/test/system/320-system-df.bats @@ -27,7 +27,7 @@ function teardown() { run_podman system df --format '{{ .Type }}:{{ .Total }}:{{ .Active }}' is "${lines[0]}" "Images:1:1" "system df : Images line" is "${lines[1]}" "Containers:2:1" "system df : Containers line" - is "${lines[2]}" "Local Volumes:2:1" "system df : Volumes line" + is "${lines[2]}" "Local Volumes:2:2" "system df : Volumes line" # Try -v. (Grrr. No way to specify individual formats) # |