summaryrefslogtreecommitdiff
path: root/tests/migrate_signals
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2016-05-13 16:47:02 -0400
committerSimon Charette <charette.s@gmail.com>2016-05-13 16:47:02 -0400
commit104727030c52a6cd5e85fdcc64dd6cfc906fc241 (patch)
treebf2d30c79363cf6318733c95ae3283e588ddcfd0 /tests/migrate_signals
parentc0118ff80bd14fe0f65843e5df266ec5d922304d (diff)
downloaddjango-104727030c52a6cd5e85fdcc64dd6cfc906fc241.tar.gz
Adjusted a variable name in migration signal tests.
Diffstat (limited to 'tests/migrate_signals')
-rw-r--r--tests/migrate_signals/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/migrate_signals/tests.py b/tests/migrate_signals/tests.py
index 603980b740..ad828fa008 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