summaryrefslogtreecommitdiff
path: root/tests/context_processors
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/context_processors
parente2b77aceddbda9071fcfc38f90fb50d091d0b5fc (diff)
downloaddjango-be67400b477c1b0e7e81766f41bbceed0de74bdc.tar.gz
Refs #24652 -- Used SimpleTestCase where appropriate.
Diffstat (limited to 'tests/context_processors')
-rw-r--r--tests/context_processors/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/context_processors/tests.py b/tests/context_processors/tests.py
index f6c6600402..de25735b5c 100644
--- a/tests/context_processors/tests.py
+++ b/tests/context_processors/tests.py
@@ -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.
"""