362
362
def test_fixes_bug_output(self):
363
363
"""commit --fixes=lp:23452 succeeds without output."""
367
367
output, err = self.run_bzr(
368
'commit', '-m', 'hello', '--fixes=lp:23452', 'hello.txt')
368
'commit', '-m', 'hello', '--fixes=lp:23452', 'tree/hello.txt')
369
369
self.assertEqual('', output)
370
370
self.assertEqual('added hello.txt\nCommitted revision 1.\n', err)