/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/trace.py

  • Committer: Jelmer Vernooij
  • Date: 2018-06-11 20:48:24 UTC
  • mfrom: (6974.2.1 python3-graph)
  • Revision ID: jelmer@jelmer.uk-20180611204824-zll0a3pzyciekd1f
merge lp:~jelmer/brz/python3-graph

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
and then delegates it.
21
21
"""
22
22
 
23
 
from bzrlib.transport import decorator
 
23
from __future__ import absolute_import
 
24
 
 
25
from ..transport import decorator
24
26
 
25
27
 
26
28
class TransportTraceDecorator(decorator.TransportDecorator):
171
173
 
172
174
def get_test_permutations():
173
175
    """Return the permutations to be used in testing."""
174
 
    from bzrlib.tests import test_server
 
176
    from breezy.tests import test_server
175
177
    return [(TransportTraceDecorator, test_server.TraceServer)]