diff options
Diffstat (limited to 'tests/test_intl.py')
-rw-r--r-- | tests/test_intl.py | 23 |
1 files changed, 6 insertions, 17 deletions
diff --git a/tests/test_intl.py b/tests/test_intl.py index 1366b0a06..796d95bcc 100644 --- a/tests/test_intl.py +++ b/tests/test_intl.py @@ -7,7 +7,6 @@ import os import re import docutils -import pygments import pytest from babel.messages import mofile, pofile from babel.messages.catalog import Catalog @@ -25,8 +24,6 @@ sphinx_intl = pytest.mark.sphinx( }, ) -pygments_version = tuple(int(v) for v in pygments.__version__.split('.')) - def read_po(pathname): with pathname.open(encoding='utf-8') as f: @@ -1099,13 +1096,9 @@ def test_additional_targets_should_not_be_translated(app): assert_count(expected_expr, result, 1) # C code block with lang should not be translated but be *C* highlighted - if pygments_version < (2, 10, 0): - expected_expr = ("""<span class="cp">#include</span> """ - """<span class="cpf"><stdio.h></span>""") - else: - expected_expr = ("""<span class="cp">#include</span>""" - """<span class="w"> </span>""" - """<span class="cpf"><stdio.h></span>""") + expected_expr = ("""<span class="cp">#include</span>""" + """<span class="w"> </span>""" + """<span class="cpf"><stdio.h></span>""") assert_count(expected_expr, result, 1) # literal block in list item should not be translated @@ -1182,13 +1175,9 @@ def test_additional_targets_should_be_translated(app): assert_count(expected_expr, result, 1) # C code block with lang should be translated and be *C* highlighted - if pygments_version < (2, 10, 0): - expected_expr = ("""<span class="cp">#include</span> """ - """<span class="cpf"><STDIO.H></span>""") - else: - expected_expr = ("""<span class="cp">#include</span>""" - """<span class="w"> </span>""" - """<span class="cpf"><STDIO.H></span>""") + expected_expr = ("""<span class="cp">#include</span>""" + """<span class="w"> </span>""" + """<span class="cpf"><STDIO.H></span>""") assert_count(expected_expr, result, 1) # literal block in list item should be translated |