From c2e4820ba32ce37a870eda9ab6d4b6f1ef01df8f Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Wed, 7 Jul 2021 02:06:30 +0900 Subject: [PATCH] Fix a flake8 violation --- tests/test_quickstart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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