From 5bb59acfde756c49ff2fac83711cf6d3d225ece5 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Thu, 13 Apr 2006 13:16:05 +0000 Subject: [PATCH] Fixed #1632 -- Fixed typo in markup unit tests. Thanks, pb git-svn-id: http://code.djangoproject.com/svn/django/trunk@2695 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/othertests/markup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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