diff options
| author | akki <akki@users.noreply.github.com> | 2016-09-19 19:47:16 +0530 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-09-19 10:17:16 -0400 |
| commit | 358c6f21f8107d830a2f285d49d69bac24a98bdd (patch) | |
| tree | f57135555710d420b55d6548179d209981e5cfd6 /tests | |
| parent | 9023f25278e60bb2da64cd8fddb243ad2137d400 (diff) | |
Fixed #27165 -- Removed unnecessary CreateModel(... 'indexes': []) in migrations.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/migrations/test_autodetector.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/migrations/test_autodetector.py b/tests/migrations/test_autodetector.py index e1469760ee..b5d9da07d3 100644 --- a/tests/migrations/test_autodetector.py +++ b/tests/migrations/test_autodetector.py @@ -1344,7 +1344,7 @@ class AutodetectorTests(TestCase): self.assertNumberMigrations(changes, "testapp", 1) self.assertOperationTypes(changes, "testapp", 0, ["DeleteModel", "CreateModel"]) self.assertOperationAttributes(changes, "testapp", 0, 0, name="AuthorProxy") - self.assertOperationAttributes(changes, "testapp", 0, 1, name="AuthorProxy", options={"indexes": []}) + self.assertOperationAttributes(changes, "testapp", 0, 1, name="AuthorProxy", options={}) def test_proxy_custom_pk(self): """ @@ -1434,9 +1434,7 @@ class AutodetectorTests(TestCase): # Right number/type of migrations? self.assertNumberMigrations(changes, 'testapp', 1) self.assertOperationTypes(changes, 'testapp', 0, ["CreateModel"]) - self.assertOperationAttributes( - changes, 'testapp', 0, 0, name="AuthorUnmanaged", options={"managed": False, "indexes": []} - ) + self.assertOperationAttributes(changes, 'testapp', 0, 0, name="AuthorUnmanaged", options={"managed": False}) def test_unmanaged_to_managed(self): # Now, we test turning an unmanaged model into a managed model |
