mirror of
https://github.com/django/django.git
synced 2025-09-09 20:16:32 +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
|
@ -1,7 +1,7 @@
|
|||
"""
|
||||
Tests for Django's bundled context processors.
|
||||
"""
|
||||
from django.test import TestCase, override_settings
|
||||
from django.test import SimpleTestCase, TestCase, override_settings
|
||||
|
||||
|
||||
@override_settings(
|
||||
|
@ -16,7 +16,7 @@ from django.test import TestCase, override_settings
|
|||
},
|
||||
}],
|
||||
)
|
||||
class RequestContextProcessorTests(TestCase):
|
||||
class RequestContextProcessorTests(SimpleTestCase):
|
||||
"""
|
||||
Tests for the ``django.template.context_processors.request`` processor.
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue