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

Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
            location = "/i/do/not/exist/"
42
42
        out, err = self.run_bzr('info '+location, retcode=3)
43
43
        self.assertEqual(out, '')
44
 
        self.assertEqual(err, 'bzr: ERROR: Not a branch: %s\n' % location)
 
44
        self.assertEqual(err, 'bzr: ERROR: Not a branch: "%s".\n' % location)
45
45
 
46
46
    def test_info_standalone(self):
47
47
        transport = self.get_transport()