/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/transport/http.py

unbreakĀ test_fetch

Show diffs side-by-side

added added

removed removed

Lines of Context:
394
394
 
395
395
    def log(self, *args, **kwargs):
396
396
        """Capture Server log output."""
 
397
        self.logs.append(args[3])
397
398
 
398
399
    def setUp(self):
399
400
        """See bzrlib.transport.Server.setUp."""
409
410
        self._http_proxy = os.environ.get("http_proxy")
410
411
        if self._http_proxy is not None:
411
412
            del os.environ["http_proxy"]
 
413
        self.logs = []
412
414
 
413
415
    def tearDown(self):
414
416
        """See bzrlib.transport.Server.tearDown."""