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

  • Committer: Jelmer Vernooij
  • Date: 2020-05-24 00:42:36 UTC
  • mto: This revision was merged to the branch mainline in revision 7505.
  • Revision ID: jelmer@jelmer.uk-20200524004236-jdj6obo4k5lznqw2
Cleanup Windows functions.

Show diffs side-by-side

added added

removed removed

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