/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/blackbox/test_serve.py

Merge bzr.dev and resolve conflicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
        # Connect to the server
81
81
        # We use this url because while this is no valid URL to connect to this
82
82
        # server instance, the transport needs a URL.
 
83
        url = 'bzr://localhost/'
83
84
        client_medium = medium.SmartSimplePipesClientMedium(
84
 
            process.stdout, process.stdin)
85
 
        transport = remote.RemoteTransport(
86
 
            'bzr://localhost/', medium=client_medium)
 
85
            process.stdout, process.stdin, url)
 
86
        transport = remote.RemoteTransport(url, medium=client_medium)
87
87
        return process, transport
88
88
 
89
89
    def start_server_port(self, extra_options=()):