Removed unnecessary capturing of stdout/stderr in auth_tests.test_management.

This commit is contained in:
François Freitag 2020-04-20 07:08:43 +00:00 committed by GitHub
parent 2014319159
commit 45e96b4d9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 4 deletions

View File

@ -421,8 +421,6 @@ class CreatesuperuserManagementCommandTestCase(TestCase):
call_command(
command,
stdin=sentinel,
stdout=StringIO(),
stderr=StringIO(),
interactive=False,
verbosity=0,
username='janet',
@ -433,8 +431,6 @@ class CreatesuperuserManagementCommandTestCase(TestCase):
command = createsuperuser.Command()
call_command(
command,
stdout=StringIO(),
stderr=StringIO(),
interactive=False,
verbosity=0,
username='joe',