1369
1375
def run_bzr_error(self, error_regexes, *args, **kwargs):
1370
1376
"""Run bzr, and check that stderr contains the supplied regexes
1373
1379
must each be found in the error output. The relative ordering
1375
1381
:param args: command-line arguments for bzr
1376
1382
:param kwargs: Keyword arguments which are interpreted by run_bzr
1377
1383
This function changes the default value of retcode to be 3,
1378
1384
since in most cases this is run when you expect bzr to fail.
1383
1390
# Make sure that commit is failing because there is nothing to do
1384
1391
self.run_bzr_error(['no changes to commit'],
1385
1392
'commit', '-m', 'my commit comment')