diff options
author | Georg Brandl <georg@python.org> | 2010-02-20 19:51:37 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-02-20 19:51:37 +0100 |
commit | b01e6898968d8f421d8a22eba2d834a1580b78c4 (patch) | |
tree | aa93e558db8a0b8672a36c548122e7e344dd34cf /tests/test_markup.py | |
parent | 6a17e7d1a69cb90545eba66c707810d161aad724 (diff) | |
download | sphinx-git-b01e6898968d8f421d8a22eba2d834a1580b78c4.tar.gz |
Make test work with docutils 0.5.
Diffstat (limited to 'tests/test_markup.py')
-rw-r--r-- | tests/test_markup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_markup.py b/tests/test_markup.py index 1023528d4..9883f83ca 100644 --- a/tests/test_markup.py +++ b/tests/test_markup.py @@ -120,5 +120,5 @@ def test_latex_escaping(): u'@PYGZat[]@(@Gamma@)\\@(@infty@)@$@PYGZlb[]@PYGZrb[]\n' u'\\end{Verbatim}') # in URIs - yield (verify, u'`test <http://example.com/~me/>`_', None, - u'\\href{http://example.com/~me/}{test}') + yield (verify_re, u'`test <http://example.com/~me/>`_', None, + ur'\href{http://example.com/~me/}{test}.*') |