summaryrefslogtreecommitdiff
path: root/test/system/600-completion.bats
diff options
context:
space:
mode:
authorEd Santiago <santiago@redhat.com>2021-12-06 08:23:00 -0700
committerEd Santiago <santiago@redhat.com>2021-12-06 08:30:59 -0700
commiteee3a42b7e9bc6fac03ba59f8cdd667b9430e2ce (patch)
tree976195439a9fc548642f3da9012080951f397219 /test/system/600-completion.bats
parent188f1989faa7de371558cb5466132edcfe62eda3 (diff)
downloadpodman-eee3a42b7e9bc6fac03ba59f8cdd667b9430e2ce.tar.gz
podman-eee3a42b7e9bc6fac03ba59f8cdd667b9430e2ce.tar.bz2
podman-eee3a42b7e9bc6fac03ba59f8cdd667b9430e2ce.zip
tests: clean up FIXMEs and noise
e2e tests: * remove two FIXMEs: * one of them is expected behavior, not a FIXME * the other is easily fixed * File issue #12521 for a real podman-remote bug, and update the Skip() message system tests: * in command-completion test, clean up stray podman-pause image (followup to #12322, in which I missed this instance). This removes distracting warnings from test logs. Signed-off-by: Ed Santiago <santiago@redhat.com>
Diffstat (limited to 'test/system/600-completion.bats')
-rw-r--r--test/system/600-completion.bats2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/system/600-completion.bats b/test/system/600-completion.bats
index f580fc2fe..9fdd42332 100644
--- a/test/system/600-completion.bats
+++ b/test/system/600-completion.bats
@@ -309,7 +309,7 @@ function _check_completion_end() {
# Clean up the pod pause image
run_podman image list --format '{{.ID}} {{.Repository}}'
while read id name; do
- if [[ "$name" =~ /pause ]]; then
+ if [[ "$name" =~ /podman-pause ]]; then
run_podman rmi $id
fi
done <<<"$output"