~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_uncommit.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:
22
22
from bzrlib.bzrdir import BzrDirMetaFormat1
23
23
from bzrlib.errors import BoundBranchOutOfDate
24
24
from bzrlib.tests import TestCaseWithTransport
25
 
from bzrlib.tests.matchers import NoVfsCalls
 
25
from bzrlib.tests.matchers import ContainsNoVfsCalls
26
26
from bzrlib.tests.script import (
27
27
    run_script,
28
28
    ScriptRunner,
312
312
        # become necessary for this use case. Please do not adjust this number
313
313
        # upwards without agreement from bzr's network support maintainers.
314
314
        self.assertLength(14, self.hpss_calls)
315
 
        self.assertThat(self.hpss_calls, NoVfsCalls)
 
315
        self.assertThat(self.hpss_calls, ContainsNoVfsCalls)