From d2202ec2d4d0477b682c6d0051f27ab4843ef89f Mon Sep 17 00:00:00 2001 From: Markus Holtermann Date: Sun, 30 Nov 2014 18:11:52 +0100 Subject: Fixed #23880 -- Added missing index_together handling for SQLite --- tests/migrations/test_operations.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'tests') diff --git a/tests/migrations/test_operations.py b/tests/migrations/test_operations.py index 32f70e8fe8..ef6cbfc688 100644 --- a/tests/migrations/test_operations.py +++ b/tests/migrations/test_operations.py @@ -1052,16 +1052,14 @@ class OperationTests(OperationTestBase): cursor.execute("INSERT INTO test_rnfl_pony (blue, weight) VALUES (1, 1)") cursor.execute("DELETE FROM test_rnfl_pony") # Ensure the index constraint has been ported over - # TODO: Uncomment assert when #23880 is fixed - # self.assertIndexExists("test_rnfl_pony", ["weight", "blue"]) + self.assertIndexExists("test_rnfl_pony", ["weight", "blue"]) # And test reversal with connection.schema_editor() as editor: operation.database_backwards("test_rnfl", editor, new_state, project_state) self.assertColumnExists("test_rnfl_pony", "pink") self.assertColumnNotExists("test_rnfl_pony", "blue") # Ensure the index constraint has been reset - # TODO: Uncomment assert when #23880 is fixed - # self.assertIndexExists("test_rnfl_pony", ["weight", "pink"]) + self.assertIndexExists("test_rnfl_pony", ["weight", "pink"]) # And deconstruction definition = operation.deconstruct() self.assertEqual(definition[0], "RenameField") -- cgit v1.3