/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 bzrlib/transport/chroot.py

  • Committer: Robert Collins
  • Date: 2010-05-05 00:05:29 UTC
  • mto: This revision was merged to the branch mainline in revision 5206.
  • Revision ID: robertc@robertcollins.net-20100505000529-ltmllyms5watqj5u
Make 'pydoc bzrlib.tests.build_tree_shape' useful.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
root.
19
19
"""
20
20
 
21
 
from __future__ import absolute_import
22
 
 
23
 
from . import (
 
21
from bzrlib.transport import (
24
22
    pathfilter,
25
23
    register_transport,
26
24
    )
65
63
 
66
64
def get_test_permutations():
67
65
    """Return the permutations to be used in testing."""
68
 
    from breezy.tests import test_server
 
66
    from bzrlib.tests import test_server
69
67
    return [(ChrootTransport, test_server.TestingChrootServer)]