~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_repository.py

  • Committer: Martin Packman
  • Date: 2011-11-29 16:14:12 UTC
  • mto: This revision was merged to the branch mainline in revision 6327.
  • Revision ID: martin.packman@canonical.com-20111129161412-mx4yu5mg6xsaty46
Require the dulwich package when using py2exe with the git plugin enabled

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
    )
32
32
from bzrlib import (
33
33
    btree_index,
 
34
    graph,
34
35
    symbol_versioning,
35
36
    tests,
36
37
    transport,
37
 
    vf_search,
38
38
    )
39
39
from bzrlib.btree_index import BTreeBuilder, BTreeGraphIndex
40
40
from bzrlib.index import GraphIndex
706
706
 
707
707
        # On a regular pass, getting the inventories and chk pages for rev-2
708
708
        # would only get the newly created chk pages
709
 
        search = vf_search.SearchResult(set(['rev-2']), set(['rev-1']), 1,
 
709
        search = graph.SearchResult(set(['rev-2']), set(['rev-1']), 1,
710
710
                                    set(['rev-2']))
711
711
        simple_chk_records = []
712
712
        for vf_name, substream in source.get_stream(search):