From bbc3505ef81768aa2afac8f73e6d45b5e8000c55 Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Tue, 21 Oct 2014 20:54:32 +0200 Subject: Removed unneeded override_system_checks Refs #23685. --- django/contrib/gis/tests/gis_migrations/test_commands.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'django') 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): """ -- cgit v1.3