mirror of https://github.com/python/cpython
gh-121200: Log pwd entry in test_expanduser_pwd2() (#121207)
Use subTest() to log the pwd entry in test_expanduser_pwd2() of test_posixpath to help debugging.
This commit is contained in:
parent
c766ad206e
commit
05a6f8da60
|
@ -359,10 +359,11 @@ class PosixPathTest(unittest.TestCase):
|
|||
"no home directory on VxWorks")
|
||||
def test_expanduser_pwd2(self):
|
||||
pwd = import_helper.import_module('pwd')
|
||||
for e in pwd.getpwall():
|
||||
name = e.pw_name
|
||||
home = e.pw_dir
|
||||
for entry in pwd.getpwall():
|
||||
name = entry.pw_name
|
||||
home = entry.pw_dir
|
||||
home = home.rstrip('/') or '/'
|
||||
with self.subTest(pwd=entry):
|
||||
self.assertEqual(posixpath.expanduser('~' + name), home)
|
||||
self.assertEqual(posixpath.expanduser(os.fsencode('~' + name)),
|
||||
os.fsencode(home))
|
||||
|
|
Loading…
Reference in New Issue