Skip to content

Commit 677d1ac

Browse files
Copilotchrisjsewell
andcommitted
Fix remaining test functions missing normalize_doctree_xml fixture
Co-authored-by: chrisjsewell <2997570+chrisjsewell@users.noreply.github.com>
1 parent 0dc75f5 commit 677d1ac

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_renderers/test_fixtures_docutils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def _apply_transforms(self):
8989

9090

9191
@pytest.mark.param_file(FIXTURE_PATH / "docutil_directives.md")
92-
def test_docutils_directives(file_params: ParamTestData, monkeypatch):
92+
def test_docutils_directives(file_params: ParamTestData, monkeypatch, normalize_doctree_xml):
9393
"""Test output of docutils directives."""
9494
if "SKIP" in file_params.description: # line-block directive not yet supported
9595
pytest.skip(file_params.description)
@@ -111,7 +111,7 @@ def _apply_transforms(self):
111111

112112

113113
@pytest.mark.param_file(FIXTURE_PATH / "docutil_syntax_extensions.txt")
114-
def test_syntax_extensions(file_params: ParamTestData):
114+
def test_syntax_extensions(file_params: ParamTestData, normalize_doctree_xml):
115115
"""The description is parsed as a docutils commandline"""
116116
settings = settings_from_cmdline(file_params.description)
117117
report_stream = StringIO()

0 commit comments

Comments
 (0)