mirror of
https://github.com/django/django.git
synced 2025-08-31 07:47:37 +00:00
Fixed #26747 -- Used more specific assertions in the Django test suite.
This commit is contained in:
parent
ea34426ae7
commit
4f336f6652
87 changed files with 406 additions and 406 deletions
|
@ -156,7 +156,7 @@ class CheckCommandTests(SimpleTestCase):
|
|||
@override_system_checks([simple_system_check, tagged_system_check])
|
||||
def test_given_tag(self):
|
||||
call_command('check', tags=['simpletag'])
|
||||
self.assertEqual(simple_system_check.kwargs, None)
|
||||
self.assertIsNone(simple_system_check.kwargs)
|
||||
self.assertEqual(tagged_system_check.kwargs, {'app_configs': None})
|
||||
|
||||
@override_system_checks([simple_system_check, tagged_system_check])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue