/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/HttpServer.py

Various hopefully improvements, but wsgi is broken, handing over to spiv :).

Show diffs side-by-side

added added

removed removed

Lines of Context:
277
277
        """Capture Server log output."""
278
278
        self.logs.append(format % args)
279
279
 
280
 
    def setUp(self):
281
 
        """See bzrlib.transport.Server.setUp."""
 
280
    def setUp(self, decorated_transport):
 
281
        """See bzrlib.transport.Server.setUp.
 
282
        
 
283
        :param decorated_transport: The transport that requests over this
 
284
            protocol should be forwarded to. Note that this is currently not
 
285
            supported for HTTP - it is ignored.
 
286
        """
282
287
        self._home_dir = os.getcwdu()
283
288
        self._local_path_parts = self._home_dir.split(os.path.sep)
284
289
        self._http_starting = threading.Lock()