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

Merge integration and knit-index utf8 decoding fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
        bzrdir,
28
28
        errors,
29
29
        osutils,
 
30
        smart,
30
31
        tests,
31
32
        urlutils,
32
33
        )
33
 
from bzrlib import smart
34
 
from bzrlib.transport import (
35
 
        get_transport,
36
 
        local,
37
 
        memory,
38
 
        remote,
39
 
        )
40
 
from bzrlib.transport.http import (
41
 
        HTTPServerWithSmarts,
42
 
        SmartClientHTTPMediumRequest,
43
 
        SmartRequestHandler,
44
 
        )
45
34
from bzrlib.smart import (
46
35
        client,
47
36
        medium,
50
39
        server,
51
40
        vfs,
52
41
)
 
42
from bzrlib.tests.HTTPTestUtil import (
 
43
        HTTPServerWithSmarts,
 
44
        SmartRequestHandler,
 
45
        )
 
46
from bzrlib.transport import (
 
47
        get_transport,
 
48
        local,
 
49
        memory,
 
50
        remote,
 
51
        )
 
52
from bzrlib.transport.http import SmartClientHTTPMediumRequest
53
53
 
54
54
 
55
55
class StringIOSSHVendor(object):