summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-02-07 10:28:22 -0500
committerGitHub <noreply@github.com>2022-02-07 10:28:22 -0500
commit30b076b98731e87067092e45e58d826ef839003a (patch)
tree3111d3f693f906a70814c2b1b85d28aa9dcd0041
parentb1dcd025c6118725b35bd89f31a77ed63528db7d (diff)
parentd0d1ffa43edd6e8ed00f7800e8251d9ba5371d8d (diff)
downloadpodman-30b076b98731e87067092e45e58d826ef839003a.tar.gz
podman-30b076b98731e87067092e45e58d826ef839003a.tar.bz2
podman-30b076b98731e87067092e45e58d826ef839003a.zip
Merge pull request #13158 from edsantiago/bats
Cleanup: remove obsolete/misleading bug workaround
-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