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

  • Committer: Jelmer Vernooij
  • Date: 2017-07-14 20:37:44 UTC
  • mto: This revision was merged to the branch mainline in revision 6734.
  • Revision ID: jelmer@jelmer.uk-20170714203744-ozd4nacruirirtp2
Move NoHelpTopic error to breesy.help.

Show diffs side-by-side

added added

removed removed

Lines of Context:
202
202
            "smart protocol.",
203
203
            str(error))
204
204
 
205
 
    def test_no_help_topic(self):
206
 
        error = errors.NoHelpTopic("topic")
207
 
        self.assertEqualDiff("No help could be found for 'topic'. "
208
 
            "Please use 'brz help topics' to obtain a list of topics.",
209
 
            str(error))
210
 
 
211
205
    def test_no_such_id(self):
212
206
        error = errors.NoSuchId("atree", "anid")
213
207
        self.assertEqualDiff("The file id \"anid\" is not present in the tree "