summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--askbot/tests/markup_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/tests/markup_test.py b/askbot/tests/markup_test.py
index 9cdc429f..170f0e34 100644
--- a/askbot/tests/markup_test.py
+++ b/askbot/tests/markup_test.py
@@ -91,7 +91,7 @@ class MarkdownTestCase(TestCase):
def test_full_link_converts_to_anchor(self):
text = """text http://example.com/ text"""
- expected ="""<p>text <a href="http://example.com">http://example.com</a>/ text</p>\n"""
+ expected ="""<p>text <a href="http://example.com/">http://example.com/</a> text</p>\n"""
#todo: note there is a weird artefact produced by markdown2 inself
#trailing slash after the closing </a> tag
#the artifact is produced by _do_auto_links() function