summaryrefslogtreecommitdiff
path: root/tests/backends/sqlite
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2020-12-30 09:01:56 +0100
committerGitHub <noreply@github.com>2020-12-30 09:01:56 +0100
commit74fd233b1433da8c68de636172ee1c9c6d1c08c9 (patch)
tree29db22cdfeac44c9b5dd0e1fcf1e08a028c5e845 /tests/backends/sqlite
parente64c1d8055a3e476122633da141f16b50f0c4a2d (diff)
Fixed #32303 -- Bumped minimum supported SQLite to 3.9.0.
Diffstat (limited to 'tests/backends/sqlite')
-rw-r--r--tests/backends/sqlite/tests.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/backends/sqlite/tests.py b/tests/backends/sqlite/tests.py
index 17a58f32ae..07477a5c71 100644
--- a/tests/backends/sqlite/tests.py
+++ b/tests/backends/sqlite/tests.py
@@ -30,9 +30,9 @@ class Tests(TestCase):
longMessage = True
def test_check_sqlite_version(self):
- msg = 'SQLite 3.8.3 or later is required (found 3.8.2).'
- with mock.patch.object(dbapi2, 'sqlite_version_info', (3, 8, 2)), \
- mock.patch.object(dbapi2, 'sqlite_version', '3.8.2'), \
+ msg = 'SQLite 3.9.0 or later is required (found 3.8.11.1).'
+ with mock.patch.object(dbapi2, 'sqlite_version_info', (3, 8, 11, 1)), \
+ mock.patch.object(dbapi2, 'sqlite_version', '3.8.11.1'), \
self.assertRaisesMessage(ImproperlyConfigured, msg):
check_sqlite_version()