Refs #27392 -- Removed "Tests that", "Ensures that", etc. from test docstrings.

This commit is contained in:
za 2016-10-27 14:53:39 +07:00 committed by Tim Graham
parent 4bb70cbcc6
commit 321e94fa41
185 changed files with 1216 additions and 1528 deletions

View file

@ -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):