aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEd Santiago <santiago@redhat.com>2022-02-07 06:58:19 -0700
committerMatthew Heon <matthew.heon@pm.me>2022-02-10 13:57:48 -0500
commit9aee36b768fbbf58dd8550380e6cb67e33af3a22 (patch)
tree44d321d536fb67342d715455fa6d041bb944b49e
parentb1b9a0d7a2a5c0ad789bd5537a081e33f0b0f7cb (diff)
downloadpodman-9aee36b768fbbf58dd8550380e6cb67e33af3a22.tar.gz
podman-9aee36b768fbbf58dd8550380e6cb67e33af3a22.tar.bz2
podman-9aee36b768fbbf58dd8550380e6cb67e33af3a22.zip
Cleanup: remove obsolete/misleading bug workaround
Followup to #13129: remove a no-longer-necessary workaround for a healthcheck bug. Signed-off-by: Ed Santiago <santiago@redhat.com>
-rw-r--r--test/system/220-healthcheck.bats3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/system/220-healthcheck.bats b/test/system/220-healthcheck.bats
index 6159a2807..c502ad669 100644
--- a/test/system/220-healthcheck.bats
+++ b/test/system/220-healthcheck.bats
@@ -15,9 +15,6 @@ function _check_health {
run_podman inspect --format "{{json .State.Healthcheck}}" healthcheck_c
parse_table "$tests" | while read field expect;do
- # (kludge to deal with parse_table and empty strings)
- if [ "$expect" = "''" ]; then expect=""; fi
-
actual=$(jq ".$field" <<<"$output")
is "$actual" "$expect" "$testname - .State.Healthcheck.$field"
done