diff options
author | Matthew Heon <matthew.heon@pm.me> | 2021-10-19 17:13:50 -0400 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2021-10-19 17:14:42 -0400 |
commit | f05e206bd34e189cdadbfa6c59cb3c2cd5fcc84c (patch) | |
tree | 1ac3124acd2b9fa914388761adabf99bafb505cf | |
parent | 437ec951d9c02e2b48857cad3aaba4e34c70c3e5 (diff) | |
download | podman-f05e206bd34e189cdadbfa6c59cb3c2cd5fcc84c.tar.gz podman-f05e206bd34e189cdadbfa6c59cb3c2cd5fcc84c.tar.bz2 podman-f05e206bd34e189cdadbfa6c59cb3c2cd5fcc84c.zip |
Fix test failures from backports
Timeouts for `podman rm` aren't in until 4.0, so we need to
remove them.
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
-rw-r--r-- | test/system/270-socket-activation.bats | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/system/270-socket-activation.bats b/test/system/270-socket-activation.bats index 6d582be18..0bdfbdad4 100644 --- a/test/system/270-socket-activation.bats +++ b/test/system/270-socket-activation.bats @@ -85,7 +85,7 @@ function teardown() { is "$status" "0" "curl exit status" is "$output" "OK" "podman service responds normally" - run_podman rm -f -t 0 $cid + run_podman rm -f $cid } @test "podman system service - socket activation - kill rootless pause" { @@ -109,7 +109,7 @@ function teardown() { is "$status" "0" "curl exit status" is "$output" "OK" "podman service responds normally" - run_podman rm -f -t 0 $cid + run_podman rm -f $cid } # vim: filetype=sh |