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
|
@ -601,7 +601,8 @@ class ClientTest(TestCase):
|
|||
|
||||
def test_view_with_exception(self):
|
||||
"Request a page that is known to throw an error"
|
||||
self.assertRaises(KeyError, self.client.get, "/broken_view/")
|
||||
with self.assertRaises(KeyError):
|
||||
self.client.get("/broken_view/")
|
||||
|
||||
# Try the same assertion, a different way
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue