diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-06-30 15:38:56 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-30 15:38:56 -0400 |
commit | 957e7a533efe2d314640afac9d3b31cc752edd80 (patch) | |
tree | 57b859d324b99541a7ab778c399798f4be8f2650 | |
parent | 1a1e3f4b24e6f856a5c2e16da0cc34a8191c9403 (diff) | |
parent | ca00067deb12b77e07442a284dc0deac7fcec173 (diff) | |
download | podman-957e7a533efe2d314640afac9d3b31cc752edd80.tar.gz podman-957e7a533efe2d314640afac9d3b31cc752edd80.tar.bz2 podman-957e7a533efe2d314640afac9d3b31cc752edd80.zip |
Merge pull request #6826 from edsantiago/test_apiv2
APIv2 tests: usability: better test logging
-rwxr-xr-x | test/apiv2/test-apiv2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/apiv2/test-apiv2 b/test/apiv2/test-apiv2 index 7a3518df2..d0bf28b9a 100755 --- a/test/apiv2/test-apiv2 +++ b/test/apiv2/test-apiv2 @@ -84,7 +84,7 @@ function like() { if expr "$actual" : "$expect" &>/dev/null; then # On success, include expected value; this helps readers understand - _show_ok 1 "$testname~$expect" + _show_ok 1 "$testname ('$actual') ~ $expect" return fi _show_ok 0 "$testname" "~ $expect" "$actual" |