/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-07-08 10:56:06 UTC
  • mto: This revision was merged to the branch mainline in revision 7030.
  • Revision ID: jelmer@jelmer.uk-20180708105606-d53hkks89qq88twu
Use separate .as_bytes method rather than __bytes__.

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)]