diff options
Diffstat (limited to 'tests/contenttypes_tests/tests.py')
| -rw-r--r-- | tests/contenttypes_tests/tests.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/contenttypes_tests/tests.py b/tests/contenttypes_tests/tests.py index 7f65fb6f9b..123e169fbc 100644 --- a/tests/contenttypes_tests/tests.py +++ b/tests/contenttypes_tests/tests.py @@ -454,7 +454,11 @@ class ContentTypesMultidbTestCase(TestCase): MIGRATION_MODULES=dict(settings.MIGRATION_MODULES, contenttypes_tests='contenttypes_tests.operations_migrations'), ) class ContentTypeOperationsTests(TransactionTestCase): - available_apps = ['django.contrib.contenttypes', 'contenttypes_tests'] + available_apps = [ + 'contenttypes_tests', + 'django.contrib.contenttypes', + 'django.contrib.auth', + ] def setUp(self): app_config = apps.get_app_config('contenttypes_tests') |
