diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-05-28 03:53:02 (GMT) |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-05-28 03:53:02 (GMT) |
commit | fb1141cd55cc6d4fa1519d76aee8914dc1698545 (patch) | |
tree | 43c3df1f19defa54a6a09ce24bdfadbcabeaa14d | |
parent | 8f1a8e32b101ce365147b30c0feb3f31a14a60b6 (diff) | |
parent | b501b565c6b5eaf5db9a6edf0258ac8b6ba9a532 (diff) | |
download | cpython-fb1141cd55cc6d4fa1519d76aee8914dc1698545.zip cpython-fb1141cd55cc6d4fa1519d76aee8914dc1698545.tar.gz cpython-fb1141cd55cc6d4fa1519d76aee8914dc1698545.tar.bz2 |
Merge with 3.3
-rw-r--r-- | Lib/test/test_os.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index 8b445b2..8916305 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -687,7 +687,7 @@ class WalkTests(unittest.TestCase): f.close() if support.can_symlink(): os.symlink(os.path.abspath(t2_path), link_path) - symlink_to_dir('broken', broken_link_path, True) + os.symlink('broken', broken_link_path, True) sub2_tree = (sub2_path, ["link"], ["broken_link", "tmp3"]) else: sub2_tree = (sub2_path, [], ["tmp3"]) |