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

  • Committer: Jelmer Vernooij
  • Date: 2017-06-08 23:30:31 UTC
  • mto: This revision was merged to the branch mainline in revision 6690.
  • Revision ID: jelmer@jelmer.uk-20170608233031-3qavls2o7a1pqllj
Update imports.

Show diffs side-by-side

added added

removed removed

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