diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-03-12 20:07:22 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-03-12 20:07:22 (GMT) |
commit | e8f3819567293bece741ae61b14564295025199b (patch) | |
tree | 5c028e14d7a671373f49bf95050044ec23263d27 /Lib/test/test_support.py | |
parent | f31213cd655953981be787a9a3609daf28f77b6b (diff) | |
parent | bb185ab33253a9999e2b630e98fc9bb33e7d4eac (diff) | |
download | cpython-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.py | 2 |
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.""" |