~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

merge hpss-get-checkout-format.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
    script,
26
26
    test_config as _t_config,
27
27
    )
28
 
from bzrlib.tests.matchers import NoVfsCalls
 
28
from bzrlib.tests.matchers import ContainsNoVfsCalls
29
29
 
30
30
 
31
31
class TestWithoutConfig(tests.TestCaseWithTransport):
339
339
        # become necessary for this use case. Please do not adjust this number
340
340
        # upwards without agreement from bzr's network support maintainers.
341
341
        self.assertLength(5, self.hpss_calls)
342
 
        self.assertThat(self.hpss_calls, NoVfsCalls)
 
342
        self.assertThat(self.hpss_calls, ContainsNoVfsCalls)