From 9c360559e3e7c974743a57c6ccaff52150c130e4 Mon Sep 17 00:00:00 2001 From: Andrew Morgan Date: Fri, 1 May 2020 15:46:56 +0100 Subject: [PATCH] Add extra newline to md code entries --- show-expected-fail-tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/show-expected-fail-tests.sh b/show-expected-fail-tests.sh index 0a4c7be87..7acb52db5 100755 --- a/show-expected-fail-tests.sh +++ b/show-expected-fail-tests.sh @@ -80,8 +80,8 @@ done <<< "${passed_but_expected_fail}" # TODO: Check that the same test doesn't appear twice in the whitelist|blacklist # Trim test output strings -tests_to_add=$(echo -e $tests_to_add | xargs -d '\n') -already_in_whitelist=$(echo -e $already_in_whitelist | 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\n') # Format output with markdown for buildkite annotation rendering purposes if [ -n "${tests_to_add}" ] && [ -n "${already_in_whitelist}" ]; then