summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-09-15 11:17:12 -0400
committerTim Graham <timograham@gmail.com>2014-09-24 14:46:10 -0400
commita4f23eba2e690f1331fe35d6f29af42899e80395 (patch)
tree052e1d1db558155ae231470d19e61d481081c05c /django
parentc692e37b6350171ee2e04b3e7090babf34ac140b (diff)
Fixed #23421 -- Corrected TEST SERIALIZE setting.
Thanks gkoller for the report.
Diffstat (limited to 'django')
-rw-r--r--django/test/runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/test/runner.py b/django/test/runner.py
index 7ec40f3c66..4d4e489cee 100644
--- a/django/test/runner.py
+++ b/django/test/runner.py
@@ -301,7 +301,7 @@ def setup_databases(verbosity, interactive, keepdb=False, **kwargs):
verbosity,
autoclobber=not interactive,
keepdb=keepdb,
- serialize=connection.settings_dict.get("TEST_SERIALIZE", True),
+ serialize=connection.settings_dict.get("TEST", {}).get("SERIALIZE", True),
)
destroy = True
else: