summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshimizukawa <shimizukawa@gmail.com>2014-10-09 00:56:26 +0900
committershimizukawa <shimizukawa@gmail.com>2014-10-09 00:56:26 +0900
commit4dc9421acf3ce48e3da365ebcbeae22a0378ebb4 (patch)
tree8be35845463b7523616561f15de7fd51e08c39b9
parentf8592aa3b0fd67feb662a976c22690dab28d9f8b (diff)
downloadsphinx-4dc9421acf3ce48e3da365ebcbeae22a0378ebb4.tar.gz
fix testing for jQuery-1.11.1
-rw-r--r--tests/test_theming.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_theming.py b/tests/test_theming.py
index 404c3197..85138b97 100644
--- a/tests/test_theming.py
+++ b/tests/test_theming.py
@@ -66,7 +66,7 @@ def test_js_source(app, status, warning):
app.builder.build(['contents'])
- v = '1.8.3'
+ v = '1.11.1'
msg = 'jquery.js version does not match to {v}'.format(v=v)
jquery_min = (app.outdir / '_static' / 'jquery.js').text()
assert 'jQuery v{v}'.format(v=v) in jquery_min, msg