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/update | |
| parent | 575706331bec4bf58ce36a9540c4c61fca49025b (diff) | |
Refs #26022 -- Used context manager version of assertRaises in tests.
Diffstat (limited to 'tests/update')
| -rw-r--r-- | tests/update/tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/update/tests.py b/tests/update/tests.py index 1ed316c958..0a4e1fb3ba 100644 --- a/tests/update/tests.py +++ b/tests/update/tests.py @@ -123,8 +123,8 @@ class AdvancedTests(TestCase): We do not support update on already sliced query sets. """ method = DataPoint.objects.all()[:2].update - self.assertRaises(AssertionError, method, - another_value='another thing') + with self.assertRaises(AssertionError): + method(another_value='another thing') def test_update_respects_to_field(self): """ |
