summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSviatoslav Sydorenko <wk@sydorenko.org.ua>2018-09-10 01:14:22 +0200
committerSviatoslav Sydorenko <wk@sydorenko.org.ua>2018-09-10 01:14:22 +0200
commit8c2dc4c20d08177c586152345d3e43b8795546b8 (patch)
tree7437f34a091345f97b2f26bfa57ddab3da9cacea
parentc1390e1ce7c72f9e6122c07007144cac2801554a (diff)
downloadcherrypy-git-8c2dc4c20d08177c586152345d3e43b8795546b8.tar.gz
Fix reason for skipif in memcached test suite
-rwxr-xr-xcherrypy/test/test_session.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cherrypy/test/test_session.py b/cherrypy/test/test_session.py
index ce350057..0ac3f6c7 100755
--- a/cherrypy/test/test_session.py
+++ b/cherrypy/test/test_session.py
@@ -445,7 +445,7 @@ def memcached_configured(memcached_instance, monkeypatch):
@pytest.mark.skipif(
platform.system() == 'Windows',
- 'pytest-services helper does not work under Windows',
+ reason='pytest-services helper does not work under Windows',
)
@pytest.mark.usefixtures('memcached_configured')
class MemcachedSessionTest(helper.CPWebCase):