summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-04-21 15:45:47 -0400
committerGitHub <noreply@github.com>2021-04-21 15:45:47 -0400
commit979f047d7392dafc2eb912ee7995140419690ee7 (patch)
tree321aa8ebd75352f4e8baaed8778293ee44d97b3c /test
parent382c0ac1336ef9c212ac5cdc676d080dceeee420 (diff)
parenta273d25ed12dbe47e0f611d5ef120b82ffe8a1a6 (diff)
downloadpodman-979f047d7392dafc2eb912ee7995140419690ee7.tar.gz
podman-979f047d7392dafc2eb912ee7995140419690ee7.tar.bz2
podman-979f047d7392dafc2eb912ee7995140419690ee7.zip
Merge pull request #10102 from edsantiago/bats
corrupt-image test: fix an oops
Diffstat (limited to 'test')
-rw-r--r--test/system/330-corrupt-images.bats4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/system/330-corrupt-images.bats b/test/system/330-corrupt-images.bats
index 9836de363..c51cc8d46 100644
--- a/test/system/330-corrupt-images.bats
+++ b/test/system/330-corrupt-images.bats
@@ -77,7 +77,7 @@ function _corrupt_image_test() {
# Run the requested command. Confirm it succeeds, with suitable warnings
run_podman $*
- is "$output" ".*error determining parent of image" \
+ is "$output" ".*error determining parent of image.*ignoring the error" \
"$* with missing $what_to_rm"
run_podman images -a --noheading
@@ -117,7 +117,7 @@ function _corrupt_image_test() {
}
@test "podman corrupt images - system reset" {
- _corrupt_image_test "image prune -a -f"
+ _corrupt_image_test "system reset -f"
}
# END actual tests