summaryrefslogtreecommitdiff
path: root/tests/basic/tests.py
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/basic/tests.py
parent575706331bec4bf58ce36a9540c4c61fca49025b (diff)
Refs #26022 -- Used context manager version of assertRaises in tests.
Diffstat (limited to 'tests/basic/tests.py')
-rw-r--r--tests/basic/tests.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/tests/basic/tests.py b/tests/basic/tests.py
index c334a8bfc6..95ed7ad897 100644
--- a/tests/basic/tests.py
+++ b/tests/basic/tests.py
@@ -499,12 +499,8 @@ class ModelLookupTest(TestCase):
)
# To avoid dict-ordering related errors check only one lookup
# in single assert.
- self.assertRaises(
- ObjectDoesNotExist,
- Article.objects.get,
- pub_date__year=2005,
- pub_date__month=8,
- )
+ with self.assertRaises(ObjectDoesNotExist):
+ Article.objects.get(pub_date__year=2005, pub_date__month=8)
six.assertRaisesRegex(
self,
ObjectDoesNotExist,