diff options
Diffstat (limited to 'tests/backends/sqlite/tests.py')
| -rw-r--r-- | tests/backends/sqlite/tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/backends/sqlite/tests.py b/tests/backends/sqlite/tests.py index c5b9569eac..d8efdf2821 100644 --- a/tests/backends/sqlite/tests.py +++ b/tests/backends/sqlite/tests.py @@ -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(): |
