summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/othertests/markup.py2
1 files changed, 1 insertions, 1 deletions
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 == """<p>Paragraph 1</p><h2>An h2</h2>"""
else:
assert rendered == markdown_content