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

  • Committer: James Westby
  • Date: 2009-03-10 23:39:48 UTC
  • mfrom: (3535.10.11 bzr.dev.bugs)
  • mto: This revision was merged to the branch mainline in revision 4109.
  • Revision ID: james.westby@canonical.com-20090310233948-fybemou7wys2n7v9
Improve the help topic and errors around --fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
404
404
        """Test the formatting of MalformedBugIdentifier."""
405
405
        error = errors.MalformedBugIdentifier('bogus', 'reason for bogosity')
406
406
        self.assertEqual(
407
 
            "Did not understand bug identifier bogus: reason for bogosity",
 
407
            'Did not understand bug identifier bogus: reason for bogosity. '
 
408
            'See "bzr help bugs" for more information on this feature.',
408
409
            str(error))
409
410
 
410
411
    def test_unknown_bug_tracker_abbreviation(self):