Merge pull request #10102 from edsantiago/bats

corrupt-image test: fix an oops
This commit is contained in:
OpenShift Merge Robot 2021-04-21 15:45:47 -04:00 committed by GitHub
commit 979f047d73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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