From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 18 Apr 2024 17:17:05 +0000 (+0200) Subject: [3.12] gh-117503: Fix test for posixpath.expanduser() when pw_dir ends with / (GH... X-Git-Tag: v3.12.4~202 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=be1fe1149fd3e501ba453d9bfac4fa85cbe2edab;p=thirdparty%2FPython%2Fcpython.git [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 --- diff --git a/Lib/test/test_posixpath.py b/Lib/test/test_posixpath.py index ddc097548542..f08bdeaf1361 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))