Correct a duplicated test case name in test_ext_math

This commit is contained in:
Hong Xu
2016-02-18 18:51:02 -08:00
parent bb9cde4e32
commit d019d3f9b8
+2 -2
View File
@@ -57,7 +57,7 @@ def test_mathjax_align(app, status, warning):
@with_app('html', testroot='ext-math',
confoverrides={'math_number_all': True,
'extensions': ['sphinx.ext.mathjax']})
def test_math_number_all(app, status, warning):
def test_math_number_all_mathjax(app, status, warning):
app.builder.build_all()
content = (app.outdir / 'index.html').text()
@@ -67,7 +67,7 @@ def test_math_number_all(app, status, warning):
@with_app('latex', testroot='ext-math',
confoverrides={'extensions': ['sphinx.ext.mathjax']})
def test_math_number_all(app, status, warning):
def test_math_number_all_latex(app, status, warning):
app.builder.build_all()
content = (app.outdir / 'test.tex').text()