diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-06-30 14:55:22 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-06-30 14:55:22 +0900 |
commit | 8017b6ec2c6123c9286f72d0e58fc6ac913c8dd8 (patch) | |
tree | a1bc7998518986b29bdbff9450d81ab5061ec0cd /tests/test_ext_autosummary.py | |
parent | afefeebb52d2ec1fffc48f1d0691eb3b135c8edf (diff) | |
download | sphinx-git-8017b6ec2c6123c9286f72d0e58fc6ac913c8dd8.tar.gz |
Fix flake8 violations
Diffstat (limited to 'tests/test_ext_autosummary.py')
-rw-r--r-- | tests/test_ext_autosummary.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_ext_autosummary.py b/tests/test_ext_autosummary.py index 1e50ac0ac..21841cc74 100644 --- a/tests/test_ext_autosummary.py +++ b/tests/test_ext_autosummary.py @@ -311,8 +311,8 @@ def test_empty_autosummary_generate(app, status, warning): assert ("WARNING: autosummary: stub file not found 'autosummary_importfail'" in warning.getvalue()) - + @pytest.mark.sphinx('dummy', testroot='ext-autosummary', confoverrides={'autosummary_generate': ['unknown']}) def test_invalid_autosummary_generate(app, status, warning): - assert 'WARNING: autosummary_generate: file not found: unknown.rst' in warning.getvalue()
\ No newline at end of file + assert 'WARNING: autosummary_generate: file not found: unknown.rst' in warning.getvalue() |