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

  • Committer: James Westby
  • Date: 2007-06-28 20:50:14 UTC
  • mto: (2563.1.1 jam-integration)
  • mto: This revision was merged to the branch mainline in revision 2564.
  • Revision ID: jw+debian@jameswestby.net-20070628205014-sgiw70zcyg2qhl13
Fix up with comments from Aaron.

Show diffs side-by-side

added added

removed removed

Lines of Context:
166
166
        os.chdir('tree')
167
167
        out, err = self.run_bzr("annotate doesnotexist", retcode=3)
168
168
        self.assertEqual('', out)
169
 
        self.assertEqual("bzr: ERROR: The file 'doesnotexist' is not "
170
 
                         "present in the specified revision\n", err)
 
169
        self.assertEqual("bzr: ERROR: doesnotexist is not versioned\n", err)
171
170