~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Jelmer Vernooij
  • Date: 2011-12-14 12:15:44 UTC
  • mto: This revision was merged to the branch mainline in revision 6365.
  • Revision ID: jelmer@samba.org-20111214121544-v07cbvmi30re6q7w
s/NoVfsCalls/ContainsNoVfsCalls/.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
import os
20
20
 
21
21
from bzrlib import tests
22
 
from bzrlib.tests.matchers import NoVfsCalls
 
22
from bzrlib.tests.matchers import ContainsNoVfsCalls
23
23
 
24
24
 
25
25
class TestPack(tests.TestCaseWithTransport):
103
103
        # adjust this number upwards without agreement from bzr's network
104
104
        # support maintainers.
105
105
        self.assertLength(6, self.hpss_calls)
106
 
        self.assertThat(self.hpss_calls, NoVfsCalls)
 
106
        self.assertThat(self.hpss_calls, ContainsNoVfsCalls)