commit | 29f609ed07aa7856741ff8b8b8b050369d0faf81 | [log] [tgz] |
---|---|---|
author | Victor Stinner <vstinner@redhat.com> | Fri Jun 28 19:39:48 2019 +0200 |
committer | GitHub <noreply@github.com> | Fri Jun 28 19:39:48 2019 +0200 |
tree | 6be5015294f6e4418bcf689355e586f858cd7a6c | |
parent | 042821ae3cf537e01963c9ec85d1a454d921e826 [diff] [blame] |
bpo-37412: Fix test_os.test_getcwd_long_path() on macOS (GH-14452)
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index 2e73906..784000a 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py
@@ -106,8 +106,7 @@ dirname = dirname + ('a' * (dirlen - len(dirname))) with tempfile.TemporaryDirectory() as tmpdir: - with support.change_cwd(tmpdir): - path = tmpdir + with support.change_cwd(tmpdir) as path: expected = path while True: