~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 11:07:31 UTC
  • mfrom: (5340.12.29 2.4-613247-test-cases)
  • Revision ID: pqm@pqm.ubuntu.com-20110520110731-8slefcqat6dr3asl
(jameinel) Bug #613247,
 clean up a bunch of test cases to avoid putting 'self' in the reference
 cycle. (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
 
        self.activities = {}
 
2016
        _activities = {} # Don't close over self and create a cycle
2017
2017
        def report_activity(t, bytes, direction):
2018
 
            count = self.activities.get(direction, 0)
 
2018
            count = _activities.get(direction, 0)
2019
2019
            count += bytes
2020
 
            self.activities[direction] = count
 
2020
            _activities[direction] = count
 
2021
        self.activities = _activities
2021
2022
 
2022
2023
        # We override at class level because constructors may propagate the
2023
2024
        # bound method and render instance overriding ineffective (an