diff options
author | Ed Santiago <santiago@redhat.com> | 2022-02-07 06:58:19 -0700 |
---|---|---|
committer | Ed Santiago <santiago@redhat.com> | 2022-02-07 06:58:19 -0700 |
commit | d0d1ffa43edd6e8ed00f7800e8251d9ba5371d8d (patch) | |
tree | 3111d3f693f906a70814c2b1b85d28aa9dcd0041 /test/system/220-healthcheck.bats | |
parent | b1dcd025c6118725b35bd89f31a77ed63528db7d (diff) | |
download | podman-d0d1ffa43edd6e8ed00f7800e8251d9ba5371d8d.tar.gz podman-d0d1ffa43edd6e8ed00f7800e8251d9ba5371d8d.tar.bz2 podman-d0d1ffa43edd6e8ed00f7800e8251d9ba5371d8d.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>
Diffstat (limited to 'test/system/220-healthcheck.bats')
-rw-r--r-- | test/system/220-healthcheck.bats | 3 |
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 |