/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to tests/test_object_store.py

  • Committer: Jelmer Vernooij
  • Date: 2011-03-23 19:07:55 UTC
  • mto: (0.200.1150 trunk)
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: jelmer@samba.org-20110323190755-mjdiolcq4mdwuc9v
Put determine_wants methods on InterRepo.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
    )
29
29
from bzrlib.graph import (
30
30
    DictParentsProvider,
 
31
    Graph,
31
32
    )
32
33
from bzrlib.tests import (
33
34
    TestCase,
71
72
 
72
73
    def _find_missing(self, ancestry, want, have):
73
74
        return _find_missing_bzr_revids(
74
 
            DictParentsProvider(ancestry).get_parent_map,
 
75
            Graph(DictParentsProvider(ancestry)),
75
76
            set(want), set(have))
76
77
 
77
78
    def test_simple(self):