~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_annotate.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:
29
29
    tests,
30
30
    )
31
31
 
32
 
from bzrlib.tests.matchers import NoVfsCalls
 
32
from bzrlib.tests.matchers import ContainsNoVfsCalls
33
33
from bzrlib.urlutils import joinpath
34
34
 
35
35
 
328
328
        # upwards without agreement from bzr's network support maintainers.
329
329
        self.assertLength(19, self.hpss_calls)
330
330
        self.expectFailure("annotate accesses inventories, which require VFS access",
331
 
            self.assertThat, self.hpss_calls, NoVfsCalls)
 
331
            self.assertThat, self.hpss_calls, ContainsNoVfsCalls)