summaryrefslogtreecommitdiff
path: root/django
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 /django
parent8b4cc9df9c0760eb4896f1423b6119bdad5674c6 (diff)
Removed unneeded override_system_checks
Refs #23685.
Diffstat (limited to 'django')
-rw-r--r--django/contrib/gis/tests/gis_migrations/test_commands.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/django/contrib/gis/tests/gis_migrations/test_commands.py b/django/contrib/gis/tests/gis_migrations/test_commands.py
index ebcf6eecd5..7b9e0a6382 100644
--- a/django/contrib/gis/tests/gis_migrations/test_commands.py
+++ b/django/contrib/gis/tests/gis_migrations/test_commands.py
@@ -3,8 +3,7 @@ from __future__ import unicode_literals
from django.core.management import call_command
from django.db import connection
from django.test import (
- override_settings, override_system_checks, skipUnlessDBFeature,
- TransactionTestCase
+ override_settings, skipUnlessDBFeature, TransactionTestCase
)
@@ -27,7 +26,6 @@ class MigrateTests(TransactionTestCase):
with connection.cursor() as cursor:
self.assertNotIn(table, connection.introspection.table_names(cursor))
- @override_system_checks([])
@override_settings(MIGRATION_MODULES={"gis": "django.contrib.gis.tests.gis_migrations.migrations"})
def test_migrate_gis(self):
"""