summaryrefslogtreecommitdiff
path: root/tests/backends
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2025-02-09 12:57:40 +0100
committerGitHub <noreply@github.com>2025-02-09 12:57:40 +0100
commit17160819f3d98a6355bfd608fe756a43cba33343 (patch)
treef16f563e416fe137b562fe1f2469b6df295b2132 /tests/backends
parent0bac41fc7e4a842e8d20319cba31cc645501c245 (diff)
Fixed #36105 -- Dropped support for MariaDB 10.5.
Diffstat (limited to 'tests/backends')
-rw-r--r--tests/backends/mysql/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/backends/mysql/tests.py b/tests/backends/mysql/tests.py
index 3c95b1b09f..e718f9fae4 100644
--- a/tests/backends/mysql/tests.py
+++ b/tests/backends/mysql/tests.py
@@ -106,8 +106,8 @@ class Tests(TestCase):
@mock.patch.object(connection, "get_database_version")
def test_check_database_version_supported(self, mocked_get_database_version):
if connection.mysql_is_mariadb:
- mocked_get_database_version.return_value = (10, 4)
- msg = "MariaDB 10.5 or later is required (found 10.4)."
+ mocked_get_database_version.return_value = (10, 5)
+ msg = "MariaDB 10.6 or later is required (found 10.5)."
else:
mocked_get_database_version.return_value = (8, 0, 4)
msg = "MySQL 8.0.11 or later is required (found 8.0.4)."