diff options
author | Michael Goerz <goerz@stanford.edu> | 2018-12-17 22:14:25 -0500 |
---|---|---|
committer | Michael Goerz <goerz@stanford.edu> | 2018-12-17 22:14:25 -0500 |
commit | 77e617e25ad097fd4e0697cb1fd7ef3774552c38 (patch) | |
tree | 4b78547b213ea264edac8ed836dbc483cf37a46c /tests/test_ext_math.py | |
parent | e9c87b3d13c192a9b6a82d9ce0c6572f85e85743 (diff) | |
download | sphinx-git-77e617e25ad097fd4e0697cb1fd7ef3774552c38.tar.gz |
Use mathjax CDN "latest" URL by default
Closes #5725
Diffstat (limited to 'tests/test_ext_math.py')
-rw-r--r-- | tests/test_ext_math.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_ext_math.py b/tests/test_ext_math.py index 5ccaa6047..796ed852c 100644 --- a/tests/test_ext_math.py +++ b/tests/test_ext_math.py @@ -97,7 +97,7 @@ def test_mathjax_options(app, status, warning): content = (app.outdir / 'index.html').text() assert ('<script async="async" integrity="sha384-0123456789" type="text/javascript" ' - 'src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?' + 'src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?' 'config=TeX-AMS-MML_HTMLorMML"></script>' in content) |