/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

(mbp) stop using failIf, failUnless, etc (Martin Pool)

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
        # init an existing branch.
101
101
        out, err = self.run_bzr('init subdir2', retcode=3)
102
102
        self.assertEqual('', out)
103
 
        self.failUnless(err.startswith('bzr: ERROR: Already a branch:'))
 
103
        self.assertTrue(err.startswith('bzr: ERROR: Already a branch:'))
104
104
 
105
105
    def test_init_branch_quiet(self):
106
106
        out, err = self.run_bzr('init -q')