diff options
Diffstat (limited to 'tests/servers')
| -rw-r--r-- | tests/servers/test_basehttp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/servers/test_basehttp.py b/tests/servers/test_basehttp.py index 2f59b1358a..91dcaa17d9 100644 --- a/tests/servers/test_basehttp.py +++ b/tests/servers/test_basehttp.py @@ -1,6 +1,6 @@ from django.core.handlers.wsgi import WSGIRequest from django.core.servers.basehttp import WSGIRequestHandler -from django.test import TestCase +from django.test import SimpleTestCase from django.test.client import RequestFactory from django.test.utils import captured_stderr from django.utils.six import BytesIO @@ -11,7 +11,7 @@ class Stub(object): self.__dict__.update(kwargs) -class WSGIRequestHandlerTestCase(TestCase): +class WSGIRequestHandlerTestCase(SimpleTestCase): def test_https(self): request = WSGIRequest(RequestFactory().get('/').environ) request.makefile = lambda *args, **kwargs: BytesIO() |
