Skip to content

Commit

Permalink
don't hide output in _run()
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Wheeler committed Nov 6, 2019
1 parent 8518b6c commit e6f57c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pifpaf/tests/test_drivers.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def setUp(self):
)

def _run(self, cmd):
self.assertEqual(0, os.system(cmd + " >/dev/null 2>&1"))
self.assertEqual(0, os.system(cmd))

def _do_test_stuck(self, cmd):
d = drivers.Driver(debug=True)
Expand Down

0 comments on commit e6f57c9

Please sign in to comment.