From 044d7091114814e85db098e0a6bc7e989e66d62b Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Tue, 20 Nov 2007 01:48:48 +0000 Subject: Fixed bug #1470 --- Lib/test/test_shutil.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py index da71fa8..56e928e 100644 --- a/Lib/test/test_shutil.py +++ b/Lib/test/test_shutil.py @@ -113,12 +113,9 @@ class TestShutil(unittest.TestCase): ): if os.path.exists(path): os.remove(path) - for path in ( - os.path.join(src_dir, 'test_dir'), - os.path.join(dst_dir, 'test_dir'), - ): + for path in (src_dir, os.path.join(dst_dir, os.path.pardir)): if os.path.exists(path): - os.removedirs(path) + shutil.rmtree(path) if hasattr(os, "symlink"): -- cgit v0.12