/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 breezy/tests/test_trace.py

  • Committer: Jelmer Vernooij
  • Date: 2017-10-27 00:18:42 UTC
  • mto: This revision was merged to the branch mainline in revision 6799.
  • Revision ID: jelmer@jelmer.uk-20171027001842-o77sekj0g2t2zwbn
Properly escape backslashes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
232
232
        self.assertLogContainsLine(log, 'foo a string\nCalled from:\n')
233
233
        # should show two frame: this frame and the one above
234
234
        self.assertContainsRe(log,
235
 
            'test_trace.py", line \d+, in test_mutter_callsite_2\n')
 
235
            'test_trace.py", line \\d+, in test_mutter_callsite_2\n')
236
236
        # this frame should be the final one
237
237
        self.assertEndsWith(log, ' "a string")\n')
238
238