~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/HTTPTestUtil.py

  • Committer: John Arbash Meinel
  • Date: 2005-09-17 20:29:29 UTC
  • mto: (1393.2.1)
  • mto: This revision was merged to the branch mainline in revision 1396.
  • Revision ID: john@arbash-meinel.com-20050917202929-a9e4a3be80bf4ba4
Working on getting tests to run. TestFetch only works if named runTest

Show diffs side-by-side

added added

removed removed

Lines of Context:
95
95
        return self._http_base_url + remote_path
96
96
 
97
97
    def setUp(self):
98
 
        super(TestCaseWithWebserver, self).setUp()
 
98
        TestCaseInTempDir.setUp(self)
99
99
        import threading, os
100
100
        self._local_path_parts = self.test_dir.split(os.path.sep)
101
101
        self._http_starting = threading.Lock()
109
109
    def tearDown(self):
110
110
        self._http_running = False
111
111
        self._http_thread.join()
112
 
        super(TestCaseWithWebserver, self).tearDown()
 
112
        TestCaseInTempDir.tearDown(self)
 
113