From 0e4d493d9324aa59e48d433eef717d7fef19b887 Mon Sep 17 00:00:00 2001 From: Alexis Metaireau Date: Fri, 27 Jul 2012 00:34:47 +0200 Subject: [PATCH] typogrify also does some changes on the abbr --- tests/test_readers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_readers.py b/tests/test_readers.py index 02d6c122..299aa378 100644 --- a/tests/test_readers.py +++ b/tests/test_readers.py @@ -57,10 +57,10 @@ class RstReaderTest(unittest.TestCase): # otherwise, typogrify should be applied content, _ = readers.read_file(_filename('article.rst'), settings={'TYPOGRIFY': True}) - expected = "

This is some content. With some stuff to "\ + expected = u"

This is some content. With some stuff to "\ "“typogrify”.

\n

Now with added "\ 'support for '\ - 'TLA.

\n' + 'TLA.

\n' self.assertEqual(content, expected) except ImportError: