mirror of
https://github.com/django/django.git
synced 2025-08-04 10:59:45 +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
|
@ -275,7 +275,8 @@ class RawQueryTests(TestCase):
|
|||
first_two = Author.objects.raw(query)[0:2]
|
||||
self.assertEqual(len(first_two), 2)
|
||||
|
||||
self.assertRaises(TypeError, lambda: Author.objects.raw(query)['test'])
|
||||
with self.assertRaises(TypeError):
|
||||
Author.objects.raw(query)['test']
|
||||
|
||||
def test_inheritance(self):
|
||||
# date is the end of the Cuban Missile Crisis, I have no idea when
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue