~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_http.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-05-20 12:37:24 UTC
  • mfrom: (5340.13.1 2.4-613247-cleanup-tests)
  • Revision ID: pqm@pqm.ubuntu.com-20110520123724-hamrkqa9gtyazxyl
(jameinel) Cleanup the log infrastructure to reduce the chance of
 self-cycles. (John A Meinel)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2013
2013
        tests.TestCase.setUp(self)
2014
2014
        self.server = self._activity_server(self._protocol_version)
2015
2015
        self.server.start_server()
2016
 
        _activities = {} # Don't close over self and create a cycle
 
2016
        self.activities = {}
2017
2017
        def report_activity(t, bytes, direction):
2018
 
            count = _activities.get(direction, 0)
 
2018
            count = self.activities.get(direction, 0)
2019
2019
            count += bytes
2020
 
            _activities[direction] = count
2021
 
        self.activities = _activities
 
2020
            self.activities[direction] = count
2022
2021
 
2023
2022
        # We override at class level because constructors may propagate the
2024
2023
        # bound method and render instance overriding ineffective (an