diff options
author | Brent Baude <bbaude@redhat.com> | 2020-08-04 13:41:44 -0500 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2020-08-04 15:31:51 -0500 |
commit | 7590a415d005abcb7774ced296c219822d47991a (patch) | |
tree | 43ac6abb498244e3427ffa514e1f0a4cd997d8c5 /test/system | |
parent | d4cf3c589d09dd395a3b63e82f5a5c198535cb46 (diff) | |
download | podman-7590a415d005abcb7774ced296c219822d47991a.tar.gz podman-7590a415d005abcb7774ced296c219822d47991a.tar.bz2 podman-7590a415d005abcb7774ced296c219822d47991a.zip |
correct go-binding key for volumes
the go binding for remove container was using 'vols' for a key to remove volumes associated to the container. the correct key should be "v" and is documented as such.
Fixes: #7128
Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'test/system')
-rw-r--r-- | test/system/160-volumes.bats | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/system/160-volumes.bats b/test/system/160-volumes.bats index ef38b2a68..e2aefed43 100644 --- a/test/system/160-volumes.bats +++ b/test/system/160-volumes.bats @@ -142,8 +142,6 @@ EOF # Anonymous temporary volumes, and persistent autocreated named ones @test "podman volume, implicit creation with run" { - skip_if_remote "FIXME: pending #7128" - # No hostdir arg: create anonymous container with random name rand=$(random_string) run_podman run -v /myvol $IMAGE sh -c "echo $rand >/myvol/myfile" |