summaryrefslogtreecommitdiff
path: root/tests/wsgi
diff options
context:
space:
mode:
authorza <za@python.or.id>2016-10-27 14:53:39 +0700
committerTim Graham <timograham@gmail.com>2016-11-10 21:30:21 -0500
commit321e94fa41b121f65c02119c02098df327bbd569 (patch)
treece5476c191d589aca4b124f841dfbccac8dd299f /tests/wsgi
parent4bb70cbcc60794f515c9bfefeca87b8272d33c0c (diff)
downloaddjango-321e94fa41b121f65c02119c02098df327bbd569.tar.gz
Refs #27392 -- Removed "Tests that", "Ensures that", etc. from test docstrings.
Diffstat (limited to 'tests/wsgi')
-rw-r--r--tests/wsgi/tests.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/wsgi/tests.py b/tests/wsgi/tests.py
index 99076f56bd..e07f8d2478 100644
--- a/tests/wsgi/tests.py
+++ b/tests/wsgi/tests.py
@@ -20,8 +20,7 @@ class WSGITest(SimpleTestCase):
def test_get_wsgi_application(self):
"""
- Verify that ``get_wsgi_application`` returns a functioning WSGI
- callable.
+ get_wsgi_application() returns a functioning WSGI callable.
"""
application = get_wsgi_application()
@@ -50,7 +49,7 @@ class WSGITest(SimpleTestCase):
def test_file_wrapper(self):
"""
- Verify that FileResponse uses wsgi.file_wrapper.
+ FileResponse uses wsgi.file_wrapper.
"""
class FileWrapper(object):
def __init__(self, filelike, blksize=8192):