summaryrefslogtreecommitdiff
path: root/tests/select_for_update
diff options
context:
space:
mode:
authorRan Benita <ran234@gmail.com>2017-04-11 18:52:53 +0300
committerTim Graham <timograham@gmail.com>2017-04-11 11:52:53 -0400
commit2a6b4e65214ff60ee50b14fb33916a2b58e9fcbe (patch)
tree1e44bf27bee8c10280a16b35cda3dbaaf6a6368f /tests/select_for_update
parent5dbf1c4b23cda915369f4895be293369575238d0 (diff)
downloaddjango-2a6b4e65214ff60ee50b14fb33916a2b58e9fcbe.tar.gz
Updated docs after changing select_for_update() to raise NotSupportedError.
Follow up to 054a44d6f0f75395bd02a21e31ea904a24750a2b.
Diffstat (limited to 'tests/select_for_update')
-rw-r--r--tests/select_for_update/tests.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/select_for_update/tests.py b/tests/select_for_update/tests.py
index b36ff6114c..0c581f0f37 100644
--- a/tests/select_for_update/tests.py
+++ b/tests/select_for_update/tests.py
@@ -134,7 +134,7 @@ class SelectForUpdateTests(TransactionTestCase):
@skipUnlessDBFeature('has_select_for_update')
def test_unsupported_nowait_raises_error(self):
"""
- DatabaseError is raised if a SELECT...FOR UPDATE NOWAIT is run on
+ NotSupportedError is raised if a SELECT...FOR UPDATE NOWAIT is run on
a database backend that supports FOR UPDATE but not NOWAIT.
"""
with self.assertRaisesMessage(NotSupportedError, 'NOWAIT is not supported on this database backend.'):
@@ -145,8 +145,8 @@ class SelectForUpdateTests(TransactionTestCase):
@skipUnlessDBFeature('has_select_for_update')
def test_unsupported_skip_locked_raises_error(self):
"""
- DatabaseError is raised if a SELECT...FOR UPDATE SKIP LOCKED is run on
- a database backend that supports FOR UPDATE but not SKIP LOCKED.
+ NotSupportedError is raised if a SELECT...FOR UPDATE SKIP LOCKED is run
+ on a database backend that supports FOR UPDATE but not SKIP LOCKED.
"""
with self.assertRaisesMessage(NotSupportedError, 'SKIP LOCKED is not supported on this database backend.'):
with transaction.atomic():
@@ -189,7 +189,7 @@ class SelectForUpdateTests(TransactionTestCase):
@skipIfDBFeature('supports_select_for_update_with_limit')
def test_unsupported_select_for_update_with_limit(self):
- msg = 'LIMIT/OFFSET not supported with select_for_update on this database backend.'
+ msg = 'LIMIT/OFFSET is not supported with select_for_update on this database backend.'
with self.assertRaisesMessage(NotSupportedError, msg):
with transaction.atomic():
list(Person.objects.all().order_by('pk').select_for_update()[1:2])