summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
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):
"""