summaryrefslogtreecommitdiff
path: root/tests/test_setup_command.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_setup_command.py')
-rw-r--r--tests/test_setup_command.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/test_setup_command.py b/tests/test_setup_command.py
index 52dad14fd..0561b2fc4 100644
--- a/tests/test_setup_command.py
+++ b/tests/test_setup_command.py
@@ -93,12 +93,12 @@ def nonascii_srcdir(request, setup_command):
==========================
"""))
- master_doc = srcdir / 'index.txt'
- master_doc.write_bytes((master_doc.read_text() + dedent("""
- .. toctree::
+ root_doc = srcdir / 'index.txt'
+ root_doc.write_bytes((root_doc.read_text() + dedent("""
+ .. toctree::
- %(mb_name)s/%(mb_name)s
- """ % locals())).encode())
+ %(mb_name)s/%(mb_name)s
+ """ % locals())).encode())
@pytest.mark.usefixtures('nonascii_srcdir')