cpython: 7d5e84a44b82 (original) (raw)

Mercurial > cpython

changeset 78081:7d5e84a44b82

Issue #15338: skip test_UNC_path when the current user doesn't have enough permissions to access the path. [#15338]

Antoine Pitrou solipsis@pitrou.net
date Fri, 13 Jul 2012 20:59:19 +0200
parents c09f454af2c6(current diff)4d480a2a6296(diff)
children 482cff0eebda
files Lib/test/test_import.py
diffstat 1 files changed, 14 insertions(+), 11 deletions(-)[+] [-] Lib/test/test_import.py 25

line wrap: on

line diff

--- a/Lib/test/test_import.py +++ b/Lib/test/test_import.py @@ -464,19 +464,22 @@ class PathsTests(unittest.TestCase): drive = path[0] unc = "\\%s\%s$"%(hn, drive) unc += path[2:]

class RelativeImportTests(unittest.TestCase):