Refs #22397 -- Removed model in test cleanup

The test was failing when using --keepdb due to a pre-existing
PonyStables model.

Thanks Florian Apolloner for the report
This commit is contained in:
Markus Holtermann 2017-05-09 00:55:54 +02:00
parent a87189fc5e
commit 8e352876c3
No known key found for this signature in database
GPG Key ID: AFE79D68D41C7E39
1 changed files with 1 additions and 1 deletions

View File

@ -1105,7 +1105,7 @@ class OperationTests(OperationTestBase):
]) ])
self.assertTableExists("test_rmflmmwt_ponystables") self.assertTableExists("test_rmflmmwt_ponystables")
operations = [migrations.RemoveField("Pony", "stables")] operations = [migrations.RemoveField("Pony", "stables"), migrations.DeleteModel("PonyStables")]
self.apply_operations("test_rmflmmwt", project_state, operations=operations) self.apply_operations("test_rmflmmwt", project_state, operations=operations)
def test_remove_field(self): def test_remove_field(self):