~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/http_server.py

  • Committer: Vincent Ladeuil
  • Date: 2007-12-19 07:46:29 UTC
  • mto: (3146.3.1 179368) (3156.2.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 3158.
  • Revision ID: v.ladeuil+lp@free.fr-20071219074629-nu5z8y56lp9o3m7f
Begin refactoring test_http.py into parameterized tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
445
445
        self._local_path_parts = self._home_dir.split(os.path.sep)
446
446
        self._http_base_url = None
447
447
 
 
448
        # Create the server thread
448
449
        self._http_starting = threading.Lock()
449
450
        self._http_starting.acquire()
450
451
        self._http_thread = threading.Thread(target=self._http_start)