summaryrefslogtreecommitdiff
path: root/tests/delete
diff options
context:
space:
mode:
authorHasan <hasan.r67@gmail.com>2016-01-17 14:56:39 +0330
committerTim Graham <timograham@gmail.com>2016-01-29 12:32:18 -0500
commit3d0dcd7f5af378d3ab6adb303b913e6c7b2e0ee5 (patch)
tree0d1074cc65a72096e44a4165611fddfc5b7ef7fb /tests/delete
parent575706331bec4bf58ce36a9540c4c61fca49025b (diff)
downloaddjango-3d0dcd7f5af378d3ab6adb303b913e6c7b2e0ee5.tar.gz
Refs #26022 -- Used context manager version of assertRaises in tests.
Diffstat (limited to 'tests/delete')
-rw-r--r--tests/delete/tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/delete/tests.py b/tests/delete/tests.py
index 1a8941904c..5b38dc0cd6 100644
--- a/tests/delete/tests.py
+++ b/tests/delete/tests.py
@@ -63,7 +63,8 @@ class OnDeleteTests(TestCase):
def test_protect(self):
a = create_a('protect')
- self.assertRaises(IntegrityError, a.protect.delete)
+ with self.assertRaises(IntegrityError):
+ a.protect.delete()
def test_do_nothing(self):
# Testing DO_NOTHING is a bit harder: It would raise IntegrityError for a normal model,