Commit 40388cc3 authored by Neal Norwitz's avatar Neal Norwitz

Fix "refleak" by restoring the tearDown method removed by accident (AFAICT)

in r62788.
parent bd85eb11
...@@ -36,7 +36,7 @@ class HelperFunctionsTests(unittest.TestCase): ...@@ -36,7 +36,7 @@ class HelperFunctionsTests(unittest.TestCase):
"""Save a copy of sys.path""" """Save a copy of sys.path"""
self.sys_path = sys.path[:] self.sys_path = sys.path[:]
def tearDown(self):
"""Restore sys.path""" """Restore sys.path"""
sys.path = self.sys_path sys.path = self.sys_path
...@@ -256,13 +256,8 @@ class ImportSideEffectTests(unittest.TestCase): ...@@ -256,13 +256,8 @@ class ImportSideEffectTests(unittest.TestCase):
else: else:
self.fail("sitecustomize not imported automatically") self.fail("sitecustomize not imported automatically")
def test_main(): def test_main():
run_unittest(HelperFunctionsTests, ImportSideEffectTests) run_unittest(HelperFunctionsTests, ImportSideEffectTests)
if __name__ == "__main__": if __name__ == "__main__":
test_main() test_main()
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