~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_errors.py

  • Committer: Aaron Bentley
  • Date: 2007-07-13 06:10:29 UTC
  • mfrom: (2616 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2617.
  • Revision ID: aaron.bentley@utoronto.ca-20070713061029-9ebz58a3yvvax5du
Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
            'It supports versions "(4, 5, 6)" to "(7, 8, 9)".',
54
54
            str(error))
55
55
 
56
 
    def test_in_process_transport(self):
57
 
        error = errors.InProcessTransport('fpp')
58
 
        self.assertEqualDiff(
59
 
            "The transport 'fpp' is only accessible within this process.",
60
 
            str(error))
61
 
 
62
56
    def test_inventory_modified(self):
63
57
        error = errors.InventoryModified("a tree to be repred")
64
58
        self.assertEqualDiff("The current inventory for the tree 'a tree to "