From be1fe1149fd3e501ba453d9bfac4fa85cbe2edab Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Thu, 18 Apr 2024 19:17:05 +0200 Subject: [3.12] gh-117503: Fix test for posixpath.expanduser() when pw_dir ends with / (GH-118056) (GH-118058) (cherry picked from commit ccdcd1d95a9d6eda4df86811c4539f204beef817) Co-authored-by: Serhiy Storchaka --- Lib/test/test_posixpath.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_posixpath.py b/Lib/test/test_posixpath.py index ddc0975..f08bdea 100644 --- a/Lib/test/test_posixpath.py +++ b/Lib/test/test_posixpath.py @@ -341,6 +341,7 @@ class PosixPathTest(unittest.TestCase): for e in pwd.getpwall(): name = e.pw_name home = e.pw_dir + home = home.rstrip('/') or '/' self.assertEqual(posixpath.expanduser('~' + name), home) self.assertEqual(posixpath.expanduser(os.fsencode('~' + name)), os.fsencode(home)) -- cgit v0.12