summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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