/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/bzr/tests/test_smart_transport.py

  • Committer: Jelmer Vernooij
  • Date: 2020-06-10 23:47:24 UTC
  • mfrom: (7490.40.9 work)
  • mto: This revision was merged to the branch mainline in revision 7511.
  • Revision ID: jelmer@jelmer.uk-20200610234724-dk8940wc16l6lihf
Merge lp:brz/3.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
from testtools.matchers import DocTestMatches
31
31
 
32
32
import breezy
33
 
from .. import (
 
33
from ... import (
34
34
    controldir,
35
35
    debug,
36
36
    errors,
39
39
    transport as _mod_transport,
40
40
    urlutils,
41
41
    )
42
 
from ..bzr import (
 
42
from .. import (
43
43
    bzrdir,
44
44
    )
45
 
from ..bzr.smart import (
 
45
from ..smart import (
46
46
    client,
47
47
    medium,
48
48
    message,
51
51
    server as _mod_server,
52
52
    vfs,
53
53
    )
54
 
from . import (
 
54
from ...tests import (
55
55
    features,
56
 
    test_smart,
57
56
    test_server,
58
57
    )
59
 
from ..transport import (
 
58
from ...transport import (
60
59
    http,
61
60
    local,
62
61
    memory,
63
62
    remote,
64
63
    ssh,
65
64
    )
 
65
from . import (
 
66
    test_smart,
 
67
    )
66
68
 
67
69
 
68
70
def create_file_pipes():