~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/HttpServer.py

  • Committer: Vincent Ladeuil
  • Date: 2007-09-17 19:16:10 UTC
  • mfrom: (2825.1.2 140055)
  • mto: This revision was merged to the branch mainline in revision 2828.
  • Revision ID: v.ladeuil+lp@free.fr-20070917191610-xy0uo72xbyeeebbz
Fix #140055 by properly closing test servers

Show diffs side-by-side

added added

removed removed

Lines of Context:
380
380
 
381
381
    def tearDown(self):
382
382
        """See bzrlib.transport.Server.tearDown."""
 
383
        self._httpd.server_close()
383
384
        self._http_running = False
384
385
        self._http_thread.join()
385
386