From 457454c713ce03752ca96309a796e66275edc9dd Mon Sep 17 00:00:00 2001 From: Bruno Miguens Date: Fri, 5 Feb 2021 19:41:43 +0000 Subject: [PATCH] Add new line at the end of file --- tests/test_advanced.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_advanced.py b/tests/test_advanced.py index 2f8aeb1..7ee61d2 100644 --- a/tests/test_advanced.py +++ b/tests/test_advanced.py @@ -5,10 +5,12 @@ def test_nested(): text = md('

This is an example link.

') assert text == 'This is an [example link](http://example.com/).\n\n' + def test_ignore_comments(): text = md("") assert text == "" + def test_ignore_comments_with_other_tags(): text = md("example link") - assert text == "[example link](http://example.com/)" \ No newline at end of file + assert text == "[example link](http://example.com/)"