diff options
| author | Simon Charette <charette.s@gmail.com> | 2018-12-21 18:29:48 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-12-22 14:20:43 -0500 |
| commit | 20f6f9eaa1ae6dfbfd346d167e17c3b50e74cc11 (patch) | |
| tree | a94d320c16e0b0d1a1c1896a51cb244fedcf7414 /tests/backends/sqlite | |
| parent | e671337e8b35427b379303cbf6808855f04083e8 (diff) | |
Renamed SQLite3 references to to SQLite.
The version suffix isn't part of the product name.
Diffstat (limited to 'tests/backends/sqlite')
| -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(): |
