diff --git a/tests/backends/sqlite/test_features.py b/tests/backends/sqlite/test_features.py index 50ccbbd3cc..5bc891f5ee 100644 --- a/tests/backends/sqlite/test_features.py +++ b/tests/backends/sqlite/test_features.py @@ -10,8 +10,9 @@ class FeaturesTests(TestCase): if hasattr(connection.features, "supports_json_field"): del connection.features.supports_json_field msg = "unable to open database file" - with mock.patch( - "django.db.backends.base.base.BaseDatabaseWrapper.cursor", + with mock.patch.object( + connection, + "cursor", side_effect=OperationalError(msg), ): with self.assertRaisesMessage(OperationalError, msg):