diff options
author | Jakob Lykke Andersen <jakobandersen@users.noreply.github.com> | 2020-03-17 10:19:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-17 10:19:10 +0100 |
commit | 385f7ed40ef843db94ec33ad377aa87d63f27a27 (patch) | |
tree | 6e3801a11aef5de523f1bb86893fc40546a8fcde /tests/test_build_html.py | |
parent | e6ffda38489cf341f0393ccfc02a40b570f6f404 (diff) | |
parent | f4d0099f2eb550d4782ce26f2fe072dde4156ea5 (diff) | |
download | sphinx-git-385f7ed40ef843db94ec33ad377aa87d63f27a27.tar.gz |
Merge pull request #7319 from jakobandersen/c_revamp
C domain rewrite
Diffstat (limited to 'tests/test_build_html.py')
-rw-r--r-- | tests/test_build_html.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/test_build_html.py b/tests/test_build_html.py index f6f350152..98eb56250 100644 --- a/tests/test_build_html.py +++ b/tests/test_build_html.py @@ -289,11 +289,11 @@ def test_html4_output(app, status, warning): (".//a[@class='reference internal'][@href='#errmod-error']/strong", 'Error'), # C references (".//span[@class='pre']", 'CFunction()'), - (".//a[@href='#c-sphinx-dosomething']", ''), - (".//a[@href='#c-sphinxstruct-member']", ''), - (".//a[@href='#c-sphinx-use-python']", ''), - (".//a[@href='#c-sphinxtype']", ''), - (".//a[@href='#c-sphinx-global']", ''), + (".//a[@href='#c.Sphinx_DoSomething']", ''), + (".//a[@href='#c.SphinxStruct.member']", ''), + (".//a[@href='#c.SPHINX_USE_PYTHON']", ''), + (".//a[@href='#c.SphinxType']", ''), + (".//a[@href='#c.sphinx_global']", ''), # test global TOC created by toctree() (".//ul[@class='current']/li[@class='toctree-l1 current']/a[@href='#']", 'Testing object descriptions'), |