diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-04-13 13:16:05 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-04-13 13:16:05 +0000 |
| commit | 5bb59acfde756c49ff2fac83711cf6d3d225ece5 (patch) | |
| tree | c8cf9223fcc2512b447c3b57a8ab690e7c8349b6 | |
| parent | d4c38fa8f7c2d5cb000aa815f27c4b72729b9721 (diff) | |
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
| -rw-r--r-- | tests/othertests/markup.py | 2 |
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 |
