summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_support.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-03-12 20:07:22 (GMT)
committerBenjamin Peterson <benjamin@python.org>2014-03-12 20:07:22 (GMT)
commite8f3819567293bece741ae61b14564295025199b (patch)
tree5c028e14d7a671373f49bf95050044ec23263d27 /Lib/test/test_support.py
parentf31213cd655953981be787a9a3609daf28f77b6b (diff)
parentbb185ab33253a9999e2b630e98fc9bb33e7d4eac (diff)
downloadcpython-e8f3819567293bece741ae61b14564295025199b.zip
cpython-e8f3819567293bece741ae61b14564295025199b.tar.gz
cpython-e8f3819567293bece741ae61b14564295025199b.tar.bz2
merge 3.3 (#19614)
Diffstat (limited to 'Lib/test/test_support.py')
-rw-r--r--Lib/test/test_support.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py
index 70e6396..9bd0a01 100644
--- a/Lib/test/test_support.py
+++ b/Lib/test/test_support.py
@@ -102,7 +102,7 @@ class TestSupport(unittest.TestCase):
self.assertTrue(os.path.isdir(path))
self.assertFalse(os.path.isdir(path))
finally:
- shutil.rmtree(parent_dir)
+ support.rmtree(parent_dir)
def test_temp_dir__path_none(self):
"""Test passing no path."""