We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eeff1c4 commit 08eaa49Copy full SHA for 08eaa49
tests.py
@@ -6,4 +6,5 @@
6
class ManagementTest(TestCase):
7
8
def test_variable_settings_initialize(self):
9
- call_command('variable_settings_initialize')
+ with open('/dev/null', 'w') as f: # avoids annoying output
10
+ call_command('variable_settings_initialize', stdout=f)
0 commit comments