~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_http.py

  • Committer: Vincent Ladeuil
  • Date: 2008-01-29 08:40:53 UTC
  • mto: (3206.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 3207.
  • Revision ID: v.ladeuil+lp@free.fr-20080129084053-sunwf549ox6zczqr
Fix two more leaked log files.

* bzrlib/tests/test_http.py:
(TestHttpProxyWhiteBox.tearDown): Call the base class tearDown.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1048
1048
        self.assertEqual(l[2], (4096, '0004'))
1049
1049
        self.assertEqual(l[3], (8192, '0008'))
1050
1050
        # The server will refuse to serve the first request (too much ranges),
1051
 
        # a second request will succeeds.
 
1051
        # a second request will succeed.
1052
1052
        self.assertEqual(2, self.get_readonly_server().GET_request_nb)
1053
1053
 
1054
1054
 
1064
1064
 
1065
1065
    def tearDown(self):
1066
1066
        self._restore_env()
 
1067
        tests.TestCase.tearDown(self)
1067
1068
 
1068
1069
    def _install_env(self, env):
1069
1070
        for name, value in env.iteritems():