diff options
| author | Tim Graham <timograham@gmail.com> | 2014-08-15 11:01:49 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-08-15 11:01:49 -0400 |
| commit | 0ad4672c0f9cc8fb819abbc97c13ceaffc011a7d (patch) | |
| tree | 4d7de988d88c433c7e93c7d8d45176eb9d13a3b8 | |
| parent | 64bb122c3dede3538294bab07d5f1a1980713d31 (diff) | |
Fixed typo in tests/migrations/test_operations.py
| -rw-r--r-- | tests/migrations/test_operations.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/migrations/test_operations.py b/tests/migrations/test_operations.py index 760e06040c..8e7df74141 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", |
