summaryrefslogtreecommitdiff
path: root/tests/admin_docs/test_utils.py
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2025-10-19 20:13:16 +0200
committerGitHub <noreply@github.com>2025-10-19 20:13:16 +0200
commitca3e0484ef31d13053af6a9d50667813e22fc282 (patch)
treed62783e7d0fae0012744f0520e558406da1add4b /tests/admin_docs/test_utils.py
parentd506e4a52847ed4fb80754175d76b6b83ff90929 (diff)
Refs #36005 -- Bumped minimum supported versions of docutils to 0.22.
Diffstat (limited to 'tests/admin_docs/test_utils.py')
-rw-r--r--tests/admin_docs/test_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/admin_docs/test_utils.py b/tests/admin_docs/test_utils.py
index 8152857263..2369fe5106 100644
--- a/tests/admin_docs/test_utils.py
+++ b/tests/admin_docs/test_utils.py
@@ -133,5 +133,5 @@ class TestUtils(AdminDocsSimpleTestCase):
)
source = "reST, `interpreted text`, default role."
markup = "<p>reST, <cite>interpreted text</cite>, default role.</p>\n"
- parts = docutils.core.publish_parts(source=source, writer_name="html4css1")
+ parts = docutils.core.publish_parts(source=source, writer="html4css1")
self.assertEqual(parts["fragment"], markup)