summaryrefslogtreecommitdiff
path: root/tests/backends/sqlite
diff options
context:
space:
mode:
Diffstat (limited to 'tests/backends/sqlite')
-rw-r--r--tests/backends/sqlite/test_features.py5
1 files changed, 3 insertions, 2 deletions
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):