~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

(jelmer) Reduce the number of connections made during "bzr branch
 --stacked". (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
import os
22
22
 
23
23
from bzrlib import tests
24
 
from bzrlib.tests.matchers import ContainsNoVfsCalls
25
24
from bzrlib.transport import memory
26
25
 
27
26
 
239
238
        # being too low. If rpc_count increases, more network roundtrips have
240
239
        # become necessary for this use case. Please do not adjust this number
241
240
        # upwards without agreement from bzr's network support maintainers.
242
 
        self.assertLength(9, self.hpss_calls)
243
 
        self.assertThat(self.hpss_calls, ContainsNoVfsCalls)
 
241
        self.assertLength(17, self.hpss_calls)