mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Fixed #32686 -- Removed unnecessary semicolon on collected multiline SQL for RunSQL.
This commit is contained in:
parent
95754dbc9b
commit
eab71f7690
2 changed files with 2 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue