Skip to content

Commit 90ce8b0

Browse files
committed
Fixed #10843: the textile tests now pass against the latest textile library.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13360 bcc190cf-cafb-0310-a4f2-bffc1f526a37
1 parent 308ca6d commit 90ce8b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

django/contrib/markup/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def test_textile(self):
2222
t = Template("{{ textile_content|textile }}")
2323
rendered = t.render(Context(locals())).strip()
2424
if textile:
25-
self.assertEqual(rendered, """<p>Paragraph 1</p>
25+
self.assertEqual(rendered.replace('\t', ''), """<p>Paragraph 1</p>
2626
2727
<p>Paragraph 2 with &#8220;quotes&#8221; and <code>code</code></p>""")
2828
else:

0 commit comments

Comments
 (0)