summaryrefslogtreecommitdiff
path: root/tests/backends/test_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/backends/test_utils.py')
-rw-r--r--tests/backends/test_utils.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/backends/test_utils.py b/tests/backends/test_utils.py
index 1b830eaced..03d4b036fd 100644
--- a/tests/backends/test_utils.py
+++ b/tests/backends/test_utils.py
@@ -130,7 +130,10 @@ class CursorWrapperTests(TransactionTestCase):
@skipIfDBFeature("supports_callproc_kwargs")
def test_unsupported_callproc_kparams_raises_error(self):
- msg = "Keyword parameters for callproc are not supported on this database backend."
+ msg = (
+ "Keyword parameters for callproc are not supported on this database "
+ "backend."
+ )
with self.assertRaisesMessage(NotSupportedError, msg):
with connection.cursor() as cursor:
cursor.callproc("test_procedure", [], {"P_I": 1})