diff options
author | EuAndreh <eu@euandre.org> | 2021-01-24 15:42:06 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-01-24 15:42:06 -0300 |
commit | 69ecf8718bb742a90a55ab3e9247c83c1a8f7f1f (patch) | |
tree | f97b4763c230dcdad01332e2567edddd2984de69 /tests/lib.sh | |
parent | tests: Add logs of which test is running (diff) | |
download | remembering-69ecf8718bb742a90a55ab3e9247c83c1a8f7f1f.tar.gz remembering-69ecf8718bb742a90a55ab3e9247c83c1a8f7f1f.tar.xz |
tests/ranking.sh: Add more test scenarions (some are now failing)
Diffstat (limited to 'tests/lib.sh')
-rwxr-xr-x | tests/lib.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib.sh b/tests/lib.sh index 8d77068..251f314 100755 --- a/tests/lib.sh +++ b/tests/lib.sh @@ -23,7 +23,7 @@ assert_empty_stderr() { assert_stdout() { if [ "$(cat "$OUT")" != "$1" ]; then - printf '\nERR: Bad STDOUT (%s)\nexpected: %s\ngot: %s\n' \ + printf '\nERR: Bad STDOUT (%s)\n\nexpected: %s\ngot: %s\n' \ "$OUT" "$1" "$(cat "$OUT")" >&2 exit 1 fi |