mirror of
https://github.com/django/django.git
synced 2025-07-22 20:55:17 +00:00
Renamed SQLite3 references to to SQLite.
The version suffix isn't part of the product name.
This commit is contained in:
parent
e671337e8b
commit
20f6f9eaa1
4 changed files with 5 additions and 5 deletions
|
@ -91,7 +91,7 @@ class SchemaTests(TransactionTestCase):
|
|||
'SQLite schema editor cannot be used while foreign key '
|
||||
'constraint checks are enabled. Make sure to disable them '
|
||||
'before entering a transaction.atomic() context because '
|
||||
'SQLite3 does not support disabling them in the middle of '
|
||||
'SQLite does not support disabling them in the middle of '
|
||||
'a multi-statement transaction.'
|
||||
)
|
||||
with self.assertRaisesMessage(NotSupportedError, msg):
|
||||
|
@ -100,7 +100,7 @@ class SchemaTests(TransactionTestCase):
|
|||
|
||||
def test_constraint_checks_disabled_atomic_allowed(self):
|
||||
"""
|
||||
SQLite3 schema editor is usable within an outer transaction as long as
|
||||
SQLite schema editor is usable within an outer transaction as long as
|
||||
foreign key constraints checks are disabled beforehand.
|
||||
"""
|
||||
def constraint_checks_enabled():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue