summaryrefslogtreecommitdiff
path: root/tests/app_loading
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/app_loading
parente2b77aceddbda9071fcfc38f90fb50d091d0b5fc (diff)
downloaddjango-be67400b477c1b0e7e81766f41bbceed0de74bdc.tar.gz
Refs #24652 -- Used SimpleTestCase where appropriate.
Diffstat (limited to 'tests/app_loading')
-rw-r--r--tests/app_loading/tests.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/app_loading/tests.py b/tests/app_loading/tests.py
index d9bead4d61..e068508e6c 100644
--- a/tests/app_loading/tests.py
+++ b/tests/app_loading/tests.py
@@ -3,13 +3,13 @@ from __future__ import unicode_literals
import os
from django.apps import apps
-from django.test import TestCase
+from django.test import SimpleTestCase
from django.test.utils import extend_sys_path
from django.utils import six
from django.utils._os import upath
-class EggLoadingTest(TestCase):
+class EggLoadingTest(SimpleTestCase):
def setUp(self):
self.egg_dir = '%s/eggs' % os.path.dirname(upath(__file__))
@@ -62,7 +62,7 @@ class EggLoadingTest(TestCase):
pass
-class GetModelsTest(TestCase):
+class GetModelsTest(SimpleTestCase):
def setUp(self):
from .not_installed import models
self.not_installed_module = models