diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2021-07-07 02:06:30 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2021-07-07 02:06:30 +0900 |
commit | c2e4820ba32ce37a870eda9ab6d4b6f1ef01df8f (patch) | |
tree | efb5dc9c03a71aff12780ae3a3091e3e35c09aa0 | |
parent | 9ff16979390a789aefd1585a7c97d80c51c17207 (diff) | |
download | sphinx-git-c2e4820ba32ce37a870eda9ab6d4b6f1ef01df8f.tar.gz |
Fix a flake8 violation
-rw-r--r-- | tests/test_quickstart.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_quickstart.py b/tests/test_quickstart.py index 02140cf02..6c2f70ec4 100644 --- a/tests/test_quickstart.py +++ b/tests/test_quickstart.py @@ -254,7 +254,7 @@ def test_extensions(tempdir): def test_exits_when_existing_confpy(monkeypatch): - # The code detects existing conf.py with path.isfile() + # The code detects existing conf.py with path.isfile() # so we mock it as True with pytest's monkeypatch def mock_isfile(path): return True |