/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_init.py

  • Committer: Aaron Bentley
  • Date: 2006-06-21 13:37:30 UTC
  • mfrom: (1799 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1802.
  • Revision ID: abentley@panoramicfeedback.com-20060621133730-6f6f965f4d2e3743
Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
        
71
71
        out, err = self.run_bzr('init', 'subdir2/nothere', retcode=3)
72
72
        self.assertEqual('', out)
73
 
        self.failUnless(err.startswith(
74
 
            'bzr: ERROR: exceptions.OSError: '
75
 
            '[Errno 2] No such file or directory: '))
 
73
        self.assertContainsRe(err,
 
74
            r'^bzr: ERROR: .*'
 
75
            '\[Errno 2\] No such file or directory: ')
76
76
        
77
77
        os.mkdir('subdir2')
78
78
        out, err = self.run_bzr('init', 'subdir2')