diff options
author | Georg Brandl <georg@python.org> | 2009-04-13 08:35:05 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-04-13 08:35:05 +0000 |
commit | ae1c7f9d5650f7b4267927e750a3bb64cc3696fb (patch) | |
tree | 87cd0084fe1e7a827fb62557f363daa8a14388e5 /tests/test_markup.py | |
parent | b13f61bc4264f08aa231056bc58722eda4a6fe8a (diff) | |
download | sphinx-git-ae1c7f9d5650f7b4267927e750a3bb64cc3696fb.tar.gz |
Fix a few stylistic nits.
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..45beb4565 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' |