diff options
author | Georg Brandl <georg@python.org> | 2009-05-10 20:59:08 +0200 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-05-10 20:59:08 +0200 |
commit | ef01782f42aaacadb50cc702584c0317f2d6ce54 (patch) | |
tree | f8b7200fc8867ed621106a0b115a496871ce3279 /tests/test_markup.py | |
parent | e02e828cbe85cec91dfa17b7603422bbc0a53e75 (diff) | |
download | sphinx-git-ef01782f42aaacadb50cc702584c0317f2d6ce54.tar.gz |
#157: fix make check.
Diffstat (limited to 'tests/test_markup.py')
-rw-r--r-- | tests/test_markup.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_markup.py b/tests/test_markup.py index 28ec17f56..77f2016ed 100644 --- a/tests/test_markup.py +++ b/tests/test_markup.py @@ -111,7 +111,8 @@ def test_inline(): def test_latex_escaping(): # correct escaping in normal mode - yield verify, u'Γ\\\\∞$', None, ur'\(\Gamma\)\textbackslash{}\(\infty\)\$' + yield (verify, u'Γ\\\\∞$', None, + ur'\(\Gamma\)\textbackslash{}\(\infty\)\$') # in verbatim code fragments yield (verify, u'::\n\n @Γ\\∞$[]', None, u'\\begin{Verbatim}[commandchars=@\\[\\]]\n' |