Skip to content

Commit 08eaa49

Browse files
mxlianjperelli
authored andcommitted
remove unuseful output from tests
1 parent eeff1c4 commit 08eaa49

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@
66
class ManagementTest(TestCase):
77

88
def test_variable_settings_initialize(self):
9-
call_command('variable_settings_initialize')
9+
with open('/dev/null', 'w') as f: # avoids annoying output
10+
call_command('variable_settings_initialize', stdout=f)

0 commit comments

Comments
 (0)