From 6011f245036ad1a652881e65b4b25cc5773bfb1b Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Fri, 15 Aug 2014 11:01:49 -0400 Subject: [PATCH] [1.7.x] Fixed typo in tests/migrations/test_operations.py Backport of 0ad4672c0f from master --- tests/migrations/test_operations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/migrations/test_operations.py b/tests/migrations/test_operations.py index 8f6cb7b4cbc..9987f049b50 100644 --- a/tests/migrations/test_operations.py +++ b/tests/migrations/test_operations.py @@ -1139,7 +1139,7 @@ class OperationTests(OperationTestBase): project_state = self.set_up_test_model("test_runsql") # Create the operation operation = migrations.RunSQL( - # Use a multi-line string with a commment to test splitting on SQLite and MySQL respectively + # Use a multi-line string with a comment to test splitting on SQLite and MySQL respectively "CREATE TABLE i_love_ponies (id int, special_thing int);\n" "INSERT INTO i_love_ponies (id, special_thing) VALUES (1, 42); -- this is magic!\n" "INSERT INTO i_love_ponies (id, special_thing) VALUES (2, 51);\n",