diff options
Diffstat (limited to 'tests/test_build_html.py')
-rw-r--r-- | tests/test_build_html.py | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/tests/test_build_html.py b/tests/test_build_html.py index 3e2c2e4d4..958dee568 100644 --- a/tests/test_build_html.py +++ b/tests/test_build_html.py @@ -1628,17 +1628,8 @@ def test_html_permalink_icon(app): @pytest.mark.sphinx('html', testroot='html_signaturereturn_icon') -def test_html_signaturereturn_icon_default(app): +def test_html_signaturereturn_icon(app): app.build() content = (app.outdir / 'index.html').read_text() assert ('<span class="sig-return-icon">→</span>' in content) - - -@pytest.mark.sphinx('html', testroot='html_signaturereturn_icon', - confoverrides={'html_signaturereturn_icon': '<span>RETURN</span>'}) -def test_html_signaturereturn_icon_custon(app): - app.build() - content = (app.outdir / 'index.html').read_text() - - assert ('<span class="sig-return-icon"><span>RETURN</span></span>' in content) |