summaryrefslogtreecommitdiff
path: root/tests/proxy_model_inheritance
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2014-10-21 20:54:32 +0200
committerClaude Paroz <claude@2xlibre.net>2014-10-21 20:54:32 +0200
commitbbc3505ef81768aa2afac8f73e6d45b5e8000c55 (patch)
treee935de6f7c37862554e4023af2d2beec0213fbb8 /tests/proxy_model_inheritance
parent8b4cc9df9c0760eb4896f1423b6119bdad5674c6 (diff)
downloaddjango-bbc3505ef81768aa2afac8f73e6d45b5e8000c55.tar.gz
Removed unneeded override_system_checks
Refs #23685.
Diffstat (limited to 'tests/proxy_model_inheritance')
-rw-r--r--tests/proxy_model_inheritance/tests.py5
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']}):