summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSviatoslav Sydorenko <wk@sydorenko.org.ua>2017-03-03 00:57:31 +0200
committerSviatoslav Sydorenko <wk@sydorenko.org.ua>2017-03-03 00:57:31 +0200
commitc6e643fb8675a48b14de20b2a885918155d3af95 (patch)
tree24003de2589603eb9c66badaf9cbd3026059092f /tests
parent87d29485ccd2cf74d9ac5c5aec0b0d169e2ba09e (diff)
downloadcherrypy-git-c6e643fb8675a48b14de20b2a885918155d3af95.tar.gz
Fixup same style string quotes across the repo
Diffstat (limited to 'tests')
-rw-r--r--tests/dist-check.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/dist-check.py b/tests/dist-check.py
index e6cdbcdd..e4d614f0 100644
--- a/tests/dist-check.py
+++ b/tests/dist-check.py
@@ -25,14 +25,14 @@ import pytest
'tutorial/custom_error.html',
])
def data_file_path(request):
- "generates data file paths expected to be found in the package"
+ 'generates data file paths expected to be found in the package'
return request.param
-@pytest.fixture(autouse=True, scope="session")
+@pytest.fixture(autouse=True, scope='session')
def remove_sys_path_0():
- "pytest adds cwd to sys.path[0]"
- print("removing", sys.path[0])
+ 'pytest adds cwd to sys.path[0]'
+ print('removing', sys.path[0])
del sys.path[0]
assert 'cherrypy' not in sys.modules