/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: Robert Collins
  • Date: 2007-11-18 19:56:39 UTC
  • mfrom: (3006 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3038.
  • Revision ID: robertc@robertcollins.net-20071118195639-m6zf3d5ljjw88kkn
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
382
382
        self.assertEqual(
383
383
            "Corrupt or incompatible data stream: my reason", str(e))
384
384
 
 
385
    def test_immortal_pending_deletion_message(self):
 
386
        err = errors.ImmortalPendingDeletion('foo')
 
387
        self.assertEquals(
 
388
            "Unable to delete transform temporary directory foo.  "
 
389
            "Please examine foo to see if it contains any files "
 
390
            "you wish to keep, and delete it when you are done.",
 
391
            str(err))
 
392
 
385
393
 
386
394
class PassThroughError(errors.BzrError):
387
395