diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-12-07 13:31:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-07 13:31:40 (GMT) |
commit | 783b794a5e6ea3bbbaba45a18b9e03ac322b3bd4 (patch) | |
tree | 06a129f9225ba46ca2f69cef78b4938184c9d7d3 /Lib/test/test_pathlib.py | |
parent | 0d5730e6437b157f4aeaf5d2e67abca23448c29a (diff) | |
download | cpython-783b794a5e6ea3bbbaba45a18b9e03ac322b3bd4.zip cpython-783b794a5e6ea3bbbaba45a18b9e03ac322b3bd4.tar.gz cpython-783b794a5e6ea3bbbaba45a18b9e03ac322b3bd4.tar.bz2 |
Revert "[3.7] bpo-34977: Add Windows App Store package (GH-10245)" (GH-11021)
This reverts commit 253209149389e6793a052034e1f2d97691086f18.
Diffstat (limited to 'Lib/test/test_pathlib.py')
-rw-r--r-- | Lib/test/test_pathlib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_pathlib.py b/Lib/test/test_pathlib.py index 056507e..e436db9 100644 --- a/Lib/test/test_pathlib.py +++ b/Lib/test/test_pathlib.py @@ -1519,7 +1519,7 @@ class _BasePathTest(object): # resolves to 'dirB/..' first before resolving to parent of dirB. self._check_resolve_relative(p, P(BASE, 'foo', 'in', 'spam'), False) # Now create absolute symlinks - d = support._longpath(tempfile.mkdtemp(suffix='-dirD', dir=os.getcwd())) + d = support._longpath(tempfile.mkdtemp(suffix='-dirD')) self.addCleanup(support.rmtree, d) os.symlink(os.path.join(d), join('dirA', 'linkX')) os.symlink(join('dirB'), os.path.join(d, 'linkY')) |