~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_smart_request.py

  • Committer: Martin Pool
  • Date: 2010-07-13 16:41:55 UTC
  • mto: This revision was merged to the branch mainline in revision 5343.
  • Revision ID: mbp@canonical.com-20100713164155-7q4g3tf5wawzji6w
Add missing super.setUp call

Show diffs side-by-side

added added

removed removed

Lines of Context:
186
186
class TestJailHook(TestCaseWithMemoryTransport):
187
187
 
188
188
    def setUp(self):
 
189
        super(TestJailHook, self).setUp()
189
190
        def clear_jail_info():
190
191
            request.jail_info.transports = None
191
192
        self.addCleanup(clear_jail_info)