mirror of
https://github.com/django/django.git
synced 2025-12-04 00:55:36 +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
|
|
@ -161,7 +161,8 @@ class CheckCommandTests(SimpleTestCase):
|
|||
|
||||
@override_system_checks([simple_system_check, tagged_system_check])
|
||||
def test_invalid_tag(self):
|
||||
self.assertRaises(CommandError, call_command, 'check', tags=['missingtag'])
|
||||
with self.assertRaises(CommandError):
|
||||
call_command('check', tags=['missingtag'])
|
||||
|
||||
@override_system_checks([simple_system_check])
|
||||
def test_list_tags_empty(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue