summaryrefslogtreecommitdiff
path: root/tests/flatpages_tests/test_models.py
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/flatpages_tests/test_models.py
parente2b77aceddbda9071fcfc38f90fb50d091d0b5fc (diff)
Refs #24652 -- Used SimpleTestCase where appropriate.
Diffstat (limited to 'tests/flatpages_tests/test_models.py')
-rw-r--r--tests/flatpages_tests/test_models.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/flatpages_tests/test_models.py b/tests/flatpages_tests/test_models.py
index 8c67450f40..ccb73c799e 100644
--- a/tests/flatpages_tests/test_models.py
+++ b/tests/flatpages_tests/test_models.py
@@ -3,11 +3,11 @@
from __future__ import unicode_literals
from django.contrib.flatpages.models import FlatPage
-from django.test import TestCase
+from django.test import SimpleTestCase
from django.test.utils import override_script_prefix
-class FlatpageModelTests(TestCase):
+class FlatpageModelTests(SimpleTestCase):
def test_get_absolute_url_urlencodes(self):
pf = FlatPage(title="Café!", url='/café/')