~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_checkout.py

  • Committer: Patch Queue Manager
  • Date: 2011-12-06 16:30:08 UTC
  • mfrom: (6345.2.3 hpss-call-counts-3)
  • Revision ID: pqm@pqm.ubuntu.com-20111206163008-eoqz60dpbysebble
(jelmer) Fix HPSS call count for 'bzr co --lightweight' and add more HPSS
 call count tests. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
200
200
        # being too low. If rpc_count increases, more network roundtrips have
201
201
        # become necessary for this use case. Please do not adjust this number
202
202
        # upwards without agreement from bzr's network support maintainers.
203
 
        if len(self.hpss_calls) < 35 or len(self.hpss_calls) > 48:
 
203
        if len(self.hpss_calls) < 34 or len(self.hpss_calls) > 48:
204
204
            self.fail(
205
 
                "Incorrect length: wanted between 35 and 48, got %d for %r" % (
 
205
                "Incorrect length: wanted between 34 and 48, got %d for %r" % (
206
206
                    len(self.hpss_calls), self.hpss_calls))