Commit 706b92c2 authored by Tarek Ziadé's avatar Tarek Ziadé

Merged revisions 69976 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r69976 | tarek.ziade | 2009-02-25 23:29:27 +0100 (Wed, 25 Feb 2009) | 1 line

  Fixed #5316 : test failure in test_site
........
parent 3fa4cb44
...@@ -50,7 +50,7 @@ class PyPIRCCommandTestCase(support.TempdirManager, unittest.TestCase): ...@@ -50,7 +50,7 @@ class PyPIRCCommandTestCase(support.TempdirManager, unittest.TestCase):
def setUp(self): def setUp(self):
"""Patches the environment.""" """Patches the environment."""
support.TempdirManager.setUp(self) super(PyPIRCCommandTestCase, self).setUp()
if 'HOME' in os.environ: if 'HOME' in os.environ:
self._old_home = os.environ['HOME'] self._old_home = os.environ['HOME']
...@@ -78,7 +78,7 @@ class PyPIRCCommandTestCase(support.TempdirManager, unittest.TestCase): ...@@ -78,7 +78,7 @@ class PyPIRCCommandTestCase(support.TempdirManager, unittest.TestCase):
else: else:
os.environ['HOME'] = self._old_home os.environ['HOME'] = self._old_home
set_threshold(self.old_threshold) set_threshold(self.old_threshold)
support.TempdirManager.tearDown(self) super(PyPIRCCommandTestCase, self).tearDown()
def test_server_registration(self): def test_server_registration(self):
# This test makes sure PyPIRCCommand knows how to: # This test makes sure PyPIRCCommand knows how to:
......
...@@ -37,10 +37,9 @@ somecode%(sep)sdoc.txt ...@@ -37,10 +37,9 @@ somecode%(sep)sdoc.txt
class sdistTestCase(support.LoggingSilencer, PyPIRCCommandTestCase): class sdistTestCase(support.LoggingSilencer, PyPIRCCommandTestCase):
def setUp(self): def setUp(self):
support.LoggingSilencer.setUp(self)
# PyPIRCCommandTestCase creates a temp dir already # PyPIRCCommandTestCase creates a temp dir already
# and put it in self.tmp_dir # and put it in self.tmp_dir
PyPIRCCommandTestCase.setUp(self) super(sdistTestCase, self).setUp()
# setting up an environment # setting up an environment
self.old_path = os.getcwd() self.old_path = os.getcwd()
os.mkdir(join(self.tmp_dir, 'somecode')) os.mkdir(join(self.tmp_dir, 'somecode'))
...@@ -54,8 +53,7 @@ class sdistTestCase(support.LoggingSilencer, PyPIRCCommandTestCase): ...@@ -54,8 +53,7 @@ class sdistTestCase(support.LoggingSilencer, PyPIRCCommandTestCase):
def tearDown(self): def tearDown(self):
# back to normal # back to normal
os.chdir(self.old_path) os.chdir(self.old_path)
PyPIRCCommandTestCase.tearDown(self) super(sdistTestCase, self).tearDown()
support.LoggingSilencer.tearDown(self)
def get_cmd(self, metadata=None): def get_cmd(self, metadata=None):
"""Returns a cmd""" """Returns a cmd"""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment