summaryrefslogtreecommitdiff
path: root/tests/swappable_models
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-12-26 13:23:38 -0500
committerTim Graham <timograham@gmail.com>2015-01-17 09:59:25 -0500
commit67235fd4ef1b006fc9cdb2fa20e7bb93b0edff4b (patch)
tree7f2cf7cac4185235e3f066caf9ae5854f0f75bdb /tests/swappable_models
parentf635d759354842e46901ed1ae1be5f5a0b81e567 (diff)
downloaddjango-67235fd4ef1b006fc9cdb2fa20e7bb93b0edff4b.tar.gz
Removed support for initial_data fixtures per deprecation timeline.
Diffstat (limited to 'tests/swappable_models')
-rw-r--r--tests/swappable_models/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/swappable_models/tests.py b/tests/swappable_models/tests.py
index de2105d2ec..246d456f20 100644
--- a/tests/swappable_models/tests.py
+++ b/tests/swappable_models/tests.py
@@ -28,7 +28,7 @@ class SwappableModelTests(TestCase):
# Re-run migrate. This will re-build the permissions and content types.
new_io = StringIO()
- management.call_command('migrate', load_initial_data=False, interactive=False, stdout=new_io)
+ management.call_command('migrate', interactive=False, stdout=new_io)
# Check that content types and permissions exist for the swapped model,
# but not for the swappable model.