Add extra newline to md code entries

This commit is contained in:
Andrew Morgan 2020-05-01 15:46:56 +01:00
parent f7cfa75886
commit 9c360559e3

View file

@ -80,8 +80,8 @@ done <<< "${passed_but_expected_fail}"
# TODO: Check that the same test doesn't appear twice in the whitelist|blacklist # TODO: Check that the same test doesn't appear twice in the whitelist|blacklist
# Trim test output strings # Trim test output strings
tests_to_add=$(echo -e $tests_to_add | xargs -d '\n') tests_to_add=$(echo -e $tests_to_add | xargs -d '\n\n')
already_in_whitelist=$(echo -e $already_in_whitelist | xargs -d '\n') already_in_whitelist=$(echo -e $already_in_whitelist | xargs -d '\n\n')
# Format output with markdown for buildkite annotation rendering purposes # Format output with markdown for buildkite annotation rendering purposes
if [ -n "${tests_to_add}" ] && [ -n "${already_in_whitelist}" ]; then if [ -n "${tests_to_add}" ] && [ -n "${already_in_whitelist}" ]; then