diff --git a/tests/othertests/markup.py b/tests/othertests/markup.py index d2d2203b17..5a8f9e1cdc 100644 --- a/tests/othertests/markup.py +++ b/tests/othertests/markup.py @@ -46,7 +46,7 @@ markdown_content = """Paragraph 1 t = Template("{{ markdown_content|markdown }}") rendered = t.render(Context(locals())).strip() -if textile: +if markdown: assert rendered == """

Paragraph 1

An h2

""" else: assert rendered == markdown_content