/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_log.py

  • Committer: Martin Pool
  • Date: 2009-03-24 01:43:50 UTC
  • mto: This revision was merged to the branch mainline in revision 4192.
  • Revision ID: mbp@sourcefrog.net-20090324014350-z4qg62nv8ly1sox1
SeparateĀ outĀ re_compile_checked

Show diffs side-by-side

added added

removed removed

Lines of Context:
249
249
        """
250
250
        self._prepare()
251
251
        out, err = self.run_bzr(['log', '-m', '*'], retcode=3)
252
 
        self.assertEqual("bzr: ERROR: Invalid regular expression: '*'\n", err)
 
252
        self.assertEqual("bzr: ERROR: Invalid regular expression"
 
253
            " in log message filter"
 
254
            ": '*'"
 
255
            ": nothing to repeat\n", err)
253
256
        self.assertEqual('', out)
254
257
 
255
258
class TestLogVerbose(TestCaseWithTransport):