Ticket #10843: ticket10843.patch

File ticket10843.patch, 552 bytes (added by Arthur Koziel, 15 years ago)
  • django/contrib/markup/tests.py

    diff --git a/django/contrib/markup/tests.py b/django/contrib/markup/tests.py
    index 9a96f8c..14f1229 100644
    a b Paragraph 2 with "quotes" and @code@"""  
    2424        if textile:
    2525            self.assertEqual(rendered, """<p>Paragraph 1</p>
    2626
    27 <p>Paragraph 2 with &#8220;quotes&#8221; and <code>code</code></p>""")
     27\t<p>Paragraph 2 with &#8220;quotes&#8221; and <code>code</code></p>""")
    2828        else:
    2929            self.assertEqual(rendered, escape(textile_content))
    3030
Back to Top