diff options
Diffstat (limited to 'tests/test_theming.py')
-rw-r--r-- | tests/test_theming.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_theming.py b/tests/test_theming.py index 3b5d59ec6..be0afe522 100644 --- a/tests/test_theming.py +++ b/tests/test_theming.py @@ -81,7 +81,7 @@ def test_js_source(app, status, warning): jquery_src = (app.outdir / '_static' / 'jquery-{v}.js'.format(v=v)).read_text() assert 'jQuery JavaScript Library v{v}'.format(v=v) in jquery_src, msg - v = '1.3.1' + v = '1.12.0' msg = 'underscore.js version does not match to {v}'.format(v=v) underscore_min = (app.outdir / '_static' / 'underscore.js').read_text() assert 'Underscore.js {v}'.format(v=v) in underscore_min, msg |