/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

  • Committer: Robert Collins
  • Date: 2007-03-28 07:33:07 UTC
  • mto: (2018.5.113 hpss)
  • mto: This revision was merged to the branch mainline in revision 2383.
  • Revision ID: robertc@robertcollins.net-20070328073307-ni7dcww9b1rf0udp
Split out hpss test fixes which dont depend on new or altered API's.

Show diffs side-by-side

added added

removed removed

Lines of Context:
304
304
        """Capture Server log output."""
305
305
        self.logs.append(format % args)
306
306
 
307
 
    def setUp(self):
308
 
        """See bzrlib.transport.Server.setUp."""
 
307
    def setUp(self, decorated_transport=None):
 
308
        """See bzrlib.transport.Server.setUp.
 
309
        
 
310
        :param decorated_transport: The transport that requests over this
 
311
            protocol should be forwarded to. Note that this is currently not
 
312
            supported for HTTP - it is ignored.
 
313
        """
309
314
        self._home_dir = os.getcwdu()
310
315
        self._local_path_parts = self._home_dir.split(os.path.sep)
311
316
        self._http_starting = threading.Lock()