summaryrefslogtreecommitdiff
path: root/tests/wsgi/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/wsgi/tests.py')
-rw-r--r--tests/wsgi/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/wsgi/tests.py b/tests/wsgi/tests.py
index 68e8d4a86d..13c5536520 100644
--- a/tests/wsgi/tests.py
+++ b/tests/wsgi/tests.py
@@ -49,7 +49,7 @@ class WSGITest(SimpleTestCase):
"""
FileResponse uses wsgi.file_wrapper.
"""
- class FileWrapper(object):
+ class FileWrapper:
def __init__(self, filelike, blksize=8192):
filelike.close()
application = get_wsgi_application()