mirror of
https://github.com/django/django.git
synced 2025-09-26 12:09:19 +00:00
Refs #24652 -- Used SimpleTestCase where appropriate.
This commit is contained in:
parent
e2b77acedd
commit
be67400b47
93 changed files with 362 additions and 340 deletions
|
@ -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):
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue