diff options
Diffstat (limited to 'tests/proxy_model_inheritance')
| -rw-r--r-- | tests/proxy_model_inheritance/tests.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/proxy_model_inheritance/tests.py b/tests/proxy_model_inheritance/tests.py index ec9e4c5a78..78e3c2607e 100644 --- a/tests/proxy_model_inheritance/tests.py +++ b/tests/proxy_model_inheritance/tests.py @@ -4,7 +4,7 @@ import os from django.core.management import call_command from django.test import TestCase, TransactionTestCase -from django.test.utils import override_system_checks, extend_sys_path +from django.test.utils import extend_sys_path from django.utils._os import upath from .models import (ConcreteModel, ConcreteModelSubclass, @@ -19,9 +19,6 @@ class ProxyModelInheritanceTests(TransactionTestCase): """ available_apps = [] - # `auth` app is imported, but not installed in this test, so we need to - # exclude checks registered by this app. - @override_system_checks([]) def test_table_exists(self): with extend_sys_path(os.path.dirname(os.path.abspath(upath(__file__)))): with self.modify_settings(INSTALLED_APPS={'append': ['app1', 'app2']}): |
