diff options
| author | Hasan <hasan.r67@gmail.com> | 2016-01-17 14:56:39 +0330 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-01-29 12:32:18 -0500 |
| commit | 3d0dcd7f5af378d3ab6adb303b913e6c7b2e0ee5 (patch) | |
| tree | 0d1074cc65a72096e44a4165611fddfc5b7ef7fb /tests/select_for_update | |
| parent | 575706331bec4bf58ce36a9540c4c61fca49025b (diff) | |
Refs #26022 -- Used context manager version of assertRaises in tests.
Diffstat (limited to 'tests/select_for_update')
| -rw-r--r-- | tests/select_for_update/tests.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/select_for_update/tests.py b/tests/select_for_update/tests.py index 70cd21d594..8958cacf62 100644 --- a/tests/select_for_update/tests.py +++ b/tests/select_for_update/tests.py @@ -110,11 +110,8 @@ class SelectForUpdateTests(TransactionTestCase): that supports FOR UPDATE but not NOWAIT, then we should find that a DatabaseError is raised. """ - self.assertRaises( - DatabaseError, - list, - Person.objects.all().select_for_update(nowait=True) - ) + with self.assertRaises(DatabaseError): + list(Person.objects.all().select_for_update(nowait=True)) @skipUnlessDBFeature('has_select_for_update') def test_for_update_requires_transaction(self): |
