diff options
author | Lee Garrett <leegarrett@users.noreply.github.com> | 2024-07-27 18:16:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-27 18:16:34 +0200 |
commit | 7e3916b767e1f02fae67630ce7e81bdf47825282 (patch) | |
tree | 6e79eda7d90239ddd18ef4883f2880b2f2fc3098 /test/integration/targets/callback_results | |
parent | Set LANGUAGE env variable is set to a non-English locale (#83671) (diff) | |
download | ansible-7e3916b767e1f02fae67630ce7e81bdf47825282.tar.xz ansible-7e3916b767e1f02fae67630ce7e81bdf47825282.zip |
Typo fixes and other bits and bobs (#83672)
Co-authored-by: Lee Garrett <lgarrett@rocketjump.eu>
Diffstat (limited to 'test/integration/targets/callback_results')
-rwxr-xr-x | test/integration/targets/callback_results/runme.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/targets/callback_results/runme.sh b/test/integration/targets/callback_results/runme.sh index fe3a0a6a34..f43b43c683 100755 --- a/test/integration/targets/callback_results/runme.sh +++ b/test/integration/targets/callback_results/runme.sh @@ -16,7 +16,7 @@ grep -e "${EXPECTED_REGEX}" "${OUTFILE}" # test connection tracking EXPECTED_CONNECTION='{"testhost":{"ssh":4}}' OUTPUT_TAIL=$(tail -n5 ${OUTFILE} | tr -d '[:space:]') -echo "Checking for connection strin ${OUTPUT_TAIL} in stdout." +echo "Checking for connection string ${OUTPUT_TAIL} in stdout." [ "${EXPECTED_CONNECTION}" == "${OUTPUT_TAIL}" ] echo $? |