diff options
Diffstat (limited to 'tests/test_writer_latex.py')
-rw-r--r-- | tests/test_writer_latex.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_writer_latex.py b/tests/test_writer_latex.py index c3f6a622b..c3337b1df 100644 --- a/tests/test_writer_latex.py +++ b/tests/test_writer_latex.py @@ -15,7 +15,7 @@ from sphinx.writers.latex import rstdim_to_latexdim def test_rstdim_to_latexdim(): # Length units docutils supported - # http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html#length-units + # https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html#length-units assert rstdim_to_latexdim('160em') == '160em' assert rstdim_to_latexdim('160px') == '160\\sphinxpxdimen' assert rstdim_to_latexdim('160in') == '160in' |