summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@pm.me>2021-10-19 17:13:50 -0400
committerMatthew Heon <matthew.heon@pm.me>2021-10-19 17:14:42 -0400
commitf05e206bd34e189cdadbfa6c59cb3c2cd5fcc84c (patch)
tree1ac3124acd2b9fa914388761adabf99bafb505cf
parent437ec951d9c02e2b48857cad3aaba4e34c70c3e5 (diff)
downloadpodman-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.bats4
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