diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2013-07-29 05:18:09 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2013-07-29 05:18:09 (GMT) |
commit | 2f253e8e626fa74e78cddfb1a79b8c1e7bbbab9c (patch) | |
tree | 697bdbfa565117cbf4b7e0a1d0214051d73e3310 /Lib/test | |
parent | 015b4535c5cc9401adc72cafd4537152cee48e12 (diff) | |
download | cpython-2f253e8e626fa74e78cddfb1a79b8c1e7bbbab9c.zip cpython-2f253e8e626fa74e78cddfb1a79b8c1e7bbbab9c.tar.gz cpython-2f253e8e626fa74e78cddfb1a79b8c1e7bbbab9c.tar.bz2 |
Attempt to fix #15415 on Windows
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_startfile.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Lib/test/test_startfile.py b/Lib/test/test_startfile.py index 5a9c2de..68e35b3 100644 --- a/Lib/test/test_startfile.py +++ b/Lib/test/test_startfile.py @@ -21,12 +21,12 @@ class TestCase(unittest.TestCase): self.assertRaises(OSError, startfile, "nonexisting.vbs") def test_empty(self): - # Switch to an existing, but safe, working directory to let the - # cleanup code do its thing without permission errors. - with support.temp_cwd(path=path.dirname(sys.executable)): - empty = path.join(path.dirname(__file__), "empty.vbs") + # startfile is a little odd when it comes to handling absolute + # paths, so we briefly switch to the main test directory + # and use a relative path + with support.change_cwd(support.TEST_HOME): + empty = "empty.vbs" startfile(empty) - startfile(empty, "open") def test_main(): support.run_unittest(TestCase) |