summaryrefslogtreecommitdiff
path: root/tests/test_config.py
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2018-09-03 21:38:31 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2018-09-04 01:14:16 +0900
commitabcb5bd5eca6ea46ffcc34a55b663083d03f339c (patch)
treefc2c6046c3842e3ef5efd2b9d15a88c6ff16eeab /tests/test_config.py
parentbc02abcb77143d12c08265c4c10ba9c6cd003832 (diff)
downloadsphinx-git-abcb5bd5eca6ea46ffcc34a55b663083d03f339c.tar.gz
The default setting for master_doc is changed to 'index'
Diffstat (limited to 'tests/test_config.py')
-rw-r--r--tests/test_config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_config.py b/tests/test_config.py
index 5dd05550c..156b193fc 100644
--- a/tests/test_config.py
+++ b/tests/test_config.py
@@ -78,7 +78,7 @@ def test_extension_values():
config = Config()
# check standard settings
- assert config.master_doc == 'contents'
+ assert config.master_doc == 'index'
# can't override it by add_config_value()
with pytest.raises(ExtensionError) as excinfo: