Print newlines after test summary

This commit is contained in:
Claudio Bley 2022-03-27 19:09:26 +02:00
parent 462fa61bc5
commit 5a62fedc1a

View file

@ -94,10 +94,10 @@ function OUT() {
function summary() {
if [[ $ERRORS -gt 0 ]]; then
printf '\n\n %d of %d tests failed.' "$ERRORS" "$TESTS" >&2
printf '\n\n %d of %d tests failed.\n\n' "$ERRORS" "$TESTS" >&2
exit 1
else
printf '\n\n %d tests passed.' "$TESTS" >&2
printf '\n\n %d tests passed.\n\n' "$TESTS" >&2
fi
}