summaryrefslogtreecommitdiff
path: root/tests/test_bdist_dumb.py
diff options
context:
space:
mode:
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-05-29 09:14:04 +0000
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-05-29 09:14:04 +0000
commitf9b04c5e43bf858c654b1557447ed19051bd85a4 (patch)
treea40789509888040cc84e612db125bdfcdf496f19 /tests/test_bdist_dumb.py
parent3418332f7bce309b6d404bd8e1a9775ea180e93f (diff)
downloadpython-setuptools-git-f9b04c5e43bf858c654b1557447ed19051bd85a4.tar.gz
Merged revisions 73008 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r73008 | tarek.ziade | 2009-05-29 17:08:07 +0900 | 1 line Fixed #6131: test_modulefinder leaked when run after test_distutils ........
Diffstat (limited to 'tests/test_bdist_dumb.py')
-rw-r--r--tests/test_bdist_dumb.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/test_bdist_dumb.py b/tests/test_bdist_dumb.py
index 2863b620..d2ea201b 100644
--- a/tests/test_bdist_dumb.py
+++ b/tests/test_bdist_dumb.py
@@ -22,16 +22,14 @@ class BuildDumbTestCase(support.TempdirManager,
unittest.TestCase):
def setUp(self):
- support.TempdirManager.setUp(self)
- support.LoggingSilencer.setUp(self)
+ super(BuildDumbTestCase, self).setUp()
self.old_location = os.getcwd()
self.old_sys_argv = sys.argv[:]
def tearDown(self):
os.chdir(self.old_location)
sys.argv = self.old_sys_argv[:]
- support.LoggingSilencer.tearDown(self)
- support.TempdirManager.tearDown(self)
+ super(BuildDumbTestCase, self).tearDown()
def test_simple_built(self):