From 104727030c52a6cd5e85fdcc64dd6cfc906fc241 Mon Sep 17 00:00:00 2001 From: Simon Charette Date: Fri, 13 May 2016 16:47:02 -0400 Subject: [PATCH] Adjusted a variable name in migration signal tests. --- tests/migrate_signals/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/migrate_signals/tests.py b/tests/migrate_signals/tests.py index 603980b7403..ad828fa0083 100644 --- a/tests/migrate_signals/tests.py +++ b/tests/migrate_signals/tests.py @@ -5,7 +5,7 @@ from django.test import TestCase, override_settings from django.utils import six APP_CONFIG = apps.get_app_config('migrate_signals') -PRE_MIGRATE_ARGS = ['app_config', 'verbosity', 'interactive', 'using'] +SIGNAL_ARGS = ['app_config', 'verbosity', 'interactive', 'using'] MIGRATE_DATABASE = 'default' MIGRATE_VERBOSITY = 1 MIGRATE_INTERACTIVE = False