mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-01-19 11:16:24 +00:00
Provide enough output to debug the failure
This commit is contained in:
parent
fd3d3bc688
commit
975f268d8d
@ -144,7 +144,11 @@ class BinTahoe(common_util.SignalMixin, unittest.TestCase):
|
||||
tricky = u"\u00F6"
|
||||
out, err, returncode = run_bintahoe([tricky])
|
||||
self.assertEqual(returncode, 1)
|
||||
self.assertIn(u"Unknown command: " + tricky, out)
|
||||
self.assertIn(
|
||||
u"Unknown command: " + tricky,
|
||||
out,
|
||||
"stdout: {!r}\nstderr: {!r}".format(out, err),
|
||||
)
|
||||
|
||||
def test_with_python_options(self):
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user