From a71724cd04e6b2b0c97f1cdbea2e528e65373be3 Mon Sep 17 00:00:00 2001 From: Akshesh Date: Tue, 16 Aug 2016 12:09:03 +0530 Subject: Refs #26709 -- Added index name to AddIndex.describe(). --- tests/migrations/test_operations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/migrations/test_operations.py b/tests/migrations/test_operations.py index fdb956ae26..5f96043e53 100644 --- a/tests/migrations/test_operations.py +++ b/tests/migrations/test_operations.py @@ -1405,7 +1405,7 @@ class OperationTests(OperationTestBase): migrations.AddIndex("Pony", models.Index(fields=["pink"])) index = models.Index(fields=["pink"], name="test_adin_pony_pink_idx") operation = migrations.AddIndex("Pony", index) - self.assertEqual(operation.describe(), "Create index on field(s) pink of model Pony") + self.assertEqual(operation.describe(), "Create index test_adin_pony_pink_idx on field(s) pink of model Pony") new_state = project_state.clone() operation.state_forwards("test_adin", new_state) # Test the database alteration -- cgit v1.3