mirror of
https://github.com/django/django.git
synced 2025-08-04 19:08:28 +00:00
Refs #26022 -- Used context manager version of assertRaises in tests.
This commit is contained in:
parent
575706331b
commit
3d0dcd7f5a
118 changed files with 1086 additions and 760 deletions
|
@ -40,10 +40,8 @@ class CustomColumnsTests(TestCase):
|
|||
)
|
||||
|
||||
def test_field_error(self):
|
||||
self.assertRaises(
|
||||
FieldError,
|
||||
lambda: Author.objects.filter(firstname__exact="John")
|
||||
)
|
||||
with self.assertRaises(FieldError):
|
||||
Author.objects.filter(firstname__exact="John")
|
||||
|
||||
def test_attribute_error(self):
|
||||
with self.assertRaises(AttributeError):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue