Author: jacob
Date: 2010-06-19 16:07:33 -0500 (Sat, 19 Jun 2010)
New Revision: 13360

Modified:
   django/trunk/django/contrib/markup/tests.py
Log:
Fixed #10843: the textile tests now pass against the latest textile library.

Modified: django/trunk/django/contrib/markup/tests.py
===================================================================
--- django/trunk/django/contrib/markup/tests.py 2010-06-19 01:36:13 UTC (rev 
13359)
+++ django/trunk/django/contrib/markup/tests.py 2010-06-19 21:07:33 UTC (rev 
13360)
@@ -22,7 +22,7 @@
         t = Template("{{ textile_content|textile }}")
         rendered = t.render(Context(locals())).strip()
         if textile:
-            self.assertEqual(rendered, """<p>Paragraph 1</p>
+            self.assertEqual(rendered.replace('\t', ''), """<p>Paragraph 1</p>
 
 <p>Paragraph 2 with &#8220;quotes&#8221; and <code>code</code></p>""")
         else:

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to