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