~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_errors.py

  • Committer: Andrew Bennetts
  • Date: 2007-03-30 01:46:31 UTC
  • mto: (2018.18.6 hpss-faster-copy)
  • mto: This revision was merged to the branch mainline in revision 2435.
  • Revision ID: andrew.bennetts@canonical.com-20070330014631-a3xragco77jx67pv
Fix the TooManyConcurrentRequests error message.

Show diffs side-by-side

added added

removed removed

Lines of Context:
119
119
        error = errors.TooManyConcurrentRequests("a medium")
120
120
        self.assertEqualDiff("The medium 'a medium' has reached its concurrent "
121
121
            "request limit. Be sure to finish_writing and finish_reading on "
122
 
            "the current request that is open.",
 
122
            "the currently open request.",
123
123
            str(error))
124
124
 
125
125
    def test_unknown_hook(self):