~jelmer/brz/tree-reference-fixes

« back to all changes in this revision

Viewing changes to breezy/tests/blackbox/test_config.py

  • Committer: Jelmer Vernooij
  • Date: 2018-03-25 12:47:13 UTC
  • mfrom: (6926.1.2 work)
  • Revision ID: jelmer@jelmer.uk-20180325124713-dq64vm9bhch1gjow
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
 
58
58
    def test_unexpected_regexp(self):
59
59
        self.run_bzr_error(
60
 
            ['The "\*file" configuration option does not exist',],
 
60
            ['The "\\*file" configuration option does not exist',],
61
61
            ['config', '*file'])
62
62
 
63
63
    def test_wrong_regexp(self):
64
64
        self.run_bzr_error(
65
 
            ['Invalid pattern\(s\) found. "\*file" nothing to repeat',],
 
65
            ['Invalid pattern\\(s\\) found. "\\*file" nothing to repeat',],
66
66
            ['config', '--all', '*file'])
67
67
 
68
68