diff options
author | Adam Turner <9087854+aa-turner@users.noreply.github.com> | 2023-02-17 22:11:14 +0000 |
---|---|---|
committer | Adam Turner <9087854+aa-turner@users.noreply.github.com> | 2023-02-18 01:58:05 +0000 |
commit | c8f4a03daceef4470ddbc34d5879ffd01588a116 (patch) | |
tree | b67cbca3c86b239e84e00b2ca5966e3c273ca18a /tests/test_quickstart.py | |
parent | 8de6638697b8c785f8022e1f526b549e74d033d1 (diff) | |
download | sphinx-git-c8f4a03daceef4470ddbc34d5879ffd01588a116.tar.gz |
Fix COM812
Diffstat (limited to 'tests/test_quickstart.py')
-rw-r--r-- | tests/test_quickstart.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_quickstart.py b/tests/test_quickstart.py index d95a314c7..ae364367d 100644 --- a/tests/test_quickstart.py +++ b/tests/test_quickstart.py @@ -152,7 +152,7 @@ def test_quickstart_all_answers(tempdir): ns = {} exec(conffile.read_text(encoding='utf8'), ns) # NoQA: S102 assert ns['extensions'] == [ - 'sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo' + 'sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo', ] assert ns['templates_path'] == ['.templates'] assert ns['source_suffix'] == '.txt' @@ -253,7 +253,7 @@ def test_exits_when_existing_confpy(monkeypatch): monkeypatch.setattr(path, 'isfile', mock_isfile) qs.term_input = mock_input({ - 'Please enter a new root path (or just Enter to exit)': '' + 'Please enter a new root path (or just Enter to exit)': '', }) d = {} with pytest.raises(SystemExit): |