summaryrefslogtreecommitdiff
path: root/tests/http_utils
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2015-04-17 17:38:20 -0400
committerSimon Charette <charette.s@gmail.com>2015-05-20 13:46:13 -0400
commitbe67400b477c1b0e7e81766f41bbceed0de74bdc (patch)
treefd8e6d087082754df9159a5549bfa80e2a8c57d9 /tests/http_utils
parente2b77aceddbda9071fcfc38f90fb50d091d0b5fc (diff)
Refs #24652 -- Used SimpleTestCase where appropriate.
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):
"""