~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_info.py

  • Committer: Daniel Watkins
  • Date: 2007-08-23 14:10:48 UTC
  • mto: (2759.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 2760.
  • Revision ID: d.m.watkins@warwick.ac.uk-20070823141048-hlyyibw24f34voen
Updated tests to reflect new error text.

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()