summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorHannes Ljungberg <hannes.ljungberg@gmail.com>2021-04-26 13:51:10 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-04-27 08:01:07 +0200
commiteab71f7690c523b25b867a9cd5bf6fb82a33c6b4 (patch)
tree9f83644869ff6291e572cc703db53069b06352ad /tests
parent95754dbc9b9479787e422f32b028493a4d2a6ec1 (diff)
Fixed #32686 -- Removed unnecessary semicolon on collected multiline SQL for RunSQL.
Diffstat (limited to 'tests')
-rw-r--r--tests/migrations/test_operations.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/migrations/test_operations.py b/tests/migrations/test_operations.py
index 3070aece2b..09c11e97db 100644
--- a/tests/migrations/test_operations.py
+++ b/tests/migrations/test_operations.py
@@ -3007,6 +3007,7 @@ class OperationTests(OperationTestBase):
project_state = self.set_up_test_model('test_runsql')
new_state = project_state.clone()
tests = [
+ 'INSERT INTO test_runsql_pony (pink, weight) VALUES (1, 1);\n',
'INSERT INTO test_runsql_pony (pink, weight) VALUES (1, 1)\n',
]
for sql in tests: