diff options
| author | Simon Charette <charette.s@gmail.com> | 2015-04-17 17:38:20 -0400 |
|---|---|---|
| committer | Simon Charette <charette.s@gmail.com> | 2015-05-20 13:46:13 -0400 |
| commit | be67400b477c1b0e7e81766f41bbceed0de74bdc (patch) | |
| tree | fd8e6d087082754df9159a5549bfa80e2a8c57d9 /tests/i18n/patterns | |
| parent | e2b77aceddbda9071fcfc38f90fb50d091d0b5fc (diff) | |
Refs #24652 -- Used SimpleTestCase where appropriate.
Diffstat (limited to 'tests/i18n/patterns')
| -rw-r--r-- | tests/i18n/patterns/tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/i18n/patterns/tests.py b/tests/i18n/patterns/tests.py index eb020fbdaf..a5a012be27 100644 --- a/tests/i18n/patterns/tests.py +++ b/tests/i18n/patterns/tests.py @@ -7,7 +7,7 @@ from django.core.urlresolvers import clear_url_caches, reverse, translate_url from django.http import HttpResponsePermanentRedirect from django.middleware.locale import LocaleMiddleware from django.template import Context, Template -from django.test import TestCase, override_settings +from django.test import SimpleTestCase, override_settings from django.test.utils import override_script_prefix from django.utils import translation from django.utils._os import upath @@ -43,7 +43,7 @@ class PermanentRedirectLocaleMiddleWare(LocaleMiddleware): }, }], ) -class URLTestCaseBase(TestCase): +class URLTestCaseBase(SimpleTestCase): """ TestCase base-class for the URL tests. """ |
