mirror of
https://github.com/django/django.git
synced 2025-11-25 21:22:14 +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
|
|
@ -115,7 +115,8 @@ class CustomManagerTests(TestCase):
|
|||
The default manager, "objects", doesn't exist, because a custom one
|
||||
was provided.
|
||||
"""
|
||||
self.assertRaises(AttributeError, lambda: Book.objects)
|
||||
with self.assertRaises(AttributeError):
|
||||
Book.objects
|
||||
|
||||
def test_filtering(self):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue