diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-09-03 21:38:31 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-09-04 01:14:16 +0900 |
commit | abcb5bd5eca6ea46ffcc34a55b663083d03f339c (patch) | |
tree | fc2c6046c3842e3ef5efd2b9d15a88c6ff16eeab /tests/test_correct_year.py | |
parent | bc02abcb77143d12c08265c4c10ba9c6cd003832 (diff) | |
download | sphinx-git-abcb5bd5eca6ea46ffcc34a55b663083d03f339c.tar.gz |
The default setting for master_doc is changed to 'index'
Diffstat (limited to 'tests/test_correct_year.py')
-rw-r--r-- | tests/test_correct_year.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_correct_year.py b/tests/test_correct_year.py index e7501bb6a..8995cef5b 100644 --- a/tests/test_correct_year.py +++ b/tests/test_correct_year.py @@ -33,5 +33,5 @@ def expect_date(request, monkeypatch): @pytest.mark.sphinx('html', testroot='correct-year') def test_correct_year(expect_date, app): app.build() - content = (app.outdir / 'contents.html').text() + content = (app.outdir / 'index.html').text() assert expect_date in content |