diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2017-04-24 17:39:40 +0200 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2017-04-24 21:10:02 +0200 |
commit | 362ee754e7d28c36f74b7feee03e529a380dd379 (patch) | |
tree | c17b49ce15a117956a61a8d7c763211af6396349 /test | |
parent | 136171e509b78d89b095bc5599bc158acd1250e7 (diff) | |
download | aur-362ee754e7d28c36f74b7feee03e529a380dd379.tar.gz aur-362ee754e7d28c36f74b7feee03e529a380dd379.tar.xz |
Do not keep line breaks in comments
With the new Markdown support, text paragraphs are now properly
converted to HTML paragraphs, so we no longer need to keep line breaks.
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'test')
-rwxr-xr-x | test/t2600-rendercomment.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/t2600-rendercomment.sh b/test/t2600-rendercomment.sh index 8da15291..edf290cd 100755 --- a/test/t2600-rendercomment.sh +++ b/test/t2600-rendercomment.sh @@ -12,7 +12,7 @@ test_expect_success 'Test comment rendering.' ' EOD "$RENDERCOMMENT" 1 && cat <<-EOD >expected && - <p>Hello world!<br> + <p>Hello world! This is a comment.</p> EOD cat <<-EOD | sqlite3 aur.db >actual && |