~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

merge hpss-get-checkout-format.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
from bzrlib.tests import (
28
28
    TestCaseWithTransport,
29
29
    )
30
 
from bzrlib.tests.matchers import NoVfsCalls
 
30
from bzrlib.tests.matchers import ContainsNoVfsCalls
31
31
from bzrlib.tests.features import (
32
32
    HardlinkFeature,
33
33
    )
186
186
        # become necessary for this use case. Please do not adjust this number
187
187
        # upwards without agreement from bzr's network support maintainers.
188
188
        self.assertLength(10, self.hpss_calls)
189
 
        self.assertThat(self.hpss_calls, NoVfsCalls)
 
189
        self.assertThat(self.hpss_calls, ContainsNoVfsCalls)
190
190
 
191
191
    def test_lightweight_checkout(self):
192
192
        self.setup_smart_server_with_call_log()
202
202
        # become necessary for this use case. Please do not adjust this number
203
203
        # upwards without agreement from bzr's network support maintainers.
204
204
        self.assertLength(15, self.hpss_calls)
205
 
        self.assertThat(self.hpss_calls, NoVfsCalls)
 
205
        self.assertThat(self.hpss_calls, ContainsNoVfsCalls)