/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/blackbox/test_cat.py

  • Committer: Jelmer Vernooij
  • Date: 2011-12-19 19:15:58 UTC
  • mfrom: (6388 +trunk)
  • mto: This revision was merged to the branch mainline in revision 6404.
  • Revision ID: jelmer@canonical.com-20111219191558-p1k7cvhjq8l6v2gm
Merge bzr.dev.

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
24
25
from bzrlib.transport import memory
25
26
 
26
27
 
238
239
        # being too low. If rpc_count increases, more network roundtrips have
239
240
        # become necessary for this use case. Please do not adjust this number
240
241
        # upwards without agreement from bzr's network support maintainers.
241
 
        self.assertLength(16, self.hpss_calls)
 
242
        self.assertLength(9, self.hpss_calls)
 
243
        self.assertThat(self.hpss_calls, ContainsNoVfsCalls)