From d019d3f9b8de7859fd26fcb77d09929faf9c180b Mon Sep 17 00:00:00 2001 From: Hong Xu Date: Thu, 18 Feb 2016 18:50:37 -0800 Subject: [PATCH] Correct a duplicated test case name in test_ext_math --- tests/test_ext_math.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_ext_math.py b/tests/test_ext_math.py index be90dfe9cf..e0f8fb9e7e 100644 --- a/tests/test_ext_math.py +++ b/tests/test_ext_math.py @@ -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()