Removed unnecessary capturing of stdout/stderr in auth_tests.test_management.
This commit is contained in:
parent
2014319159
commit
45e96b4d9d
|
@ -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',
|
||||||
|
|
Loading…
Reference in New Issue