/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: Martin Pool
  • Date: 2008-02-13 01:42:47 UTC
  • mto: (3221.6.1 1.2)
  • mto: This revision was merged to the branch mainline in revision 3222.
  • Revision ID: mbp@sourcefrog.net-20080213014247-buajf9y91w5xuaa8
Update error format in test_inconsistent_delta

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
    def test_inconsistent_delta(self):
62
62
        error = errors.InconsistentDelta('path', 'file-id', 'reason for foo')
63
63
        self.assertEqualDiff(
64
 
            "An inconsistent delta was supplied for 'path', 'file-id'\n"
 
64
            "An inconsistent delta was supplied involving 'path', 'file-id'\n"
65
65
            "reason: reason for foo",
66
66
            str(error))
67
67