summaryrefslogtreecommitdiff
path: root/tests/http_utils
diff options
context:
space:
mode:
Diffstat (limited to 'tests/http_utils')
-rw-r--r--tests/http_utils/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/http_utils/tests.py b/tests/http_utils/tests.py
index a75cc7ab21..53e06c8938 100644
--- a/tests/http_utils/tests.py
+++ b/tests/http_utils/tests.py
@@ -5,7 +5,7 @@ import io
from django.http import HttpRequest, HttpResponse, StreamingHttpResponse
from django.http.utils import conditional_content_removal
-from django.test import TestCase
+from django.test import SimpleTestCase
# based on Python 3.3's gzip.compress
@@ -19,7 +19,7 @@ def gzip_compress(data):
return buf.getvalue()
-class HttpUtilTests(TestCase):
+class HttpUtilTests(SimpleTestCase):
def test_conditional_content_removal(self):
"""