~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

merge hpss-get-checkout-format.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
    upgrade,
32
32
    urlutils,
33
33
    )
34
 
from bzrlib.tests.matchers import NoVfsCalls
 
34
from bzrlib.tests.matchers import ContainsNoVfsCalls
35
35
from bzrlib.transport import memory
36
36
 
37
37
 
1444
1444
        # become necessary for this use case. Please do not adjust this number
1445
1445
        # upwards without agreement from bzr's network support maintainers.
1446
1446
        self.assertLength(12, self.hpss_calls)
1447
 
        self.assertThat(self.hpss_calls, NoVfsCalls)
 
1447
        self.assertThat(self.hpss_calls, ContainsNoVfsCalls)
1448
1448
 
1449
1449
    def test_verbose_branch_info(self):
1450
1450
        self.setup_smart_server_with_call_log()
1460
1460
        # become necessary for this use case. Please do not adjust this number
1461
1461
        # upwards without agreement from bzr's network support maintainers.
1462
1462
        self.assertLength(16, self.hpss_calls)
1463
 
        self.assertThat(self.hpss_calls, NoVfsCalls)
 
1463
        self.assertThat(self.hpss_calls, ContainsNoVfsCalls)