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

  • Committer: Jelmer Vernooij
  • Date: 2018-05-19 17:31:48 UTC
  • mto: This revision was merged to the branch mainline in revision 6970.
  • Revision ID: jelmer@jelmer.uk-20180519173148-b3hcsfw21xvt1lu0
Handle GhostRevisionsHaveNoRevno in hpss.

Show diffs side-by-side

added added

removed removed

Lines of Context:
208
208
    def test_MemoryError(self):
209
209
        self.assertTranslationEqual((b"MemoryError",), MemoryError())
210
210
 
 
211
    def test_GhostRevisionsHaveNoRevno(self):
 
212
        self.assertTranslationEqual(
 
213
            (b"GhostRevisionsHaveNoRevno", b'revid1', b'revid2'),
 
214
            errors.GhostRevisionsHaveNoRevno(b'revid1', b'revid2'))
 
215
 
211
216
    def test_generic_Exception(self):
212
217
        self.assertTranslationEqual((b'error', b'Exception', b""),
213
218
            Exception())