~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_reconcile.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-10-27 07:35:19 UTC
  • mfrom: (3709.5.10 smart-push-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20081027073519-qy22jw3pt00k4u2w
Reduce round-trips when pushing to an existing repo by using the
        get_parent_map RPC more,
        and batching calls to it in _walk_to_common_revisions. (Andrew
        Bennetts)

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
from bzrlib import bzrdir, errors, tests
21
21
from bzrlib.reconcile import reconcile, Reconciler
22
22
from bzrlib.revision import Revision
23
 
from bzrlib.tests.repository_implementations.test_repository import TestCaseWithRepository
 
23
from bzrlib.tests.per_repository import TestCaseWithRepository
24
24
from bzrlib.transport import get_transport
25
25
from bzrlib.workingtree import WorkingTree
26
26